LEADBITMAPLOAD

typedef struct tagLEADBITMAPLOAD
{
   L_UINT uStructSize; 
   L_TCHAR Name[L_MAXPATH];
   pLOADFILEOPTION pOptions;
} LEADBITMAPLOAD, L_FAR * pLEADBITMAPLOAD;

The LEADBITMAPLOAD structure provides information in the L_BM_LOAD message.

Member

Description

uStructSize

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

Name

An array of length L_MAXPATH that contains the full path name of the file to load.

pOptions

Pointer to optional load options.

Comments

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