Bonjour;
j'ai cette partie de code que je n'ai pas compris, quelqu'un peut m'aider:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
 
typedef struct {
   HANDLE hData;
   HANDLE hImage;
   int  width;   /* Horizontal width of image in pixels */
   int  height;  /* Vertical height of image in pixels (also number of rows) */
   UNCHAR  huge  *data;   /* Image data, 1 byte per pixel, in large row-major block */
   UNCHAR  huge **image;  /* Array of pointers to beginning of each data row */
} image_type;
ce que je n'ai pas compris c'est c'est quoi ce HANDLE?
et merci d'avance.