LEADBITMAPINFO

typedef struct tagLEADBITMAPINFO
{
   L_UINT uStructSize; 
   L_INT Width;
   L_INT Height;
   L_INT Pixels;
} LEADBITMAPINFO, L_FAR * pLEADBITMAPINFO;

The LEADBITMAPINFO structure provides information in the L_BM_INFO message.

Member

Description

uStructSize

Size of this structure in bytes, for versioning. Use the sizeof() macro to calculate this value.

Width

Width of the image in pixels.

Height

Height of the image in pixels.

Pixels

Number of bits per pixel.

Comments

pLEADBITMAPINFO is a pointer to a LEADBITMAPINFO structure. Where the message parameter type is pLEADBITMAPINFO, you can declare a LEADBITMAPINFO variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pLEADBITMAPINFO variable is necessary only if your program requires a pointer.