typedef struct tagLOGPALETTE { /* lgpl */
WORD palVersion;
WORD palNumEntries;
PALETTEENTRY palPalEntry[1];
} LOGPALETTE;
The LOGPALETTE structure defines a logical color palette.
palVersion
Specifies the Windows version number for the structure. This value should be 0x300 for Windows 3.0 and later.
palNumEntries
Specifies the number of palette color entries.
palPalEntry
Specifies an array of PALETTEENTRY structures that define the color and usage of each entry in the logical palette.
The colors in the palette entry table should appear in order of importance, because entries earlier in the logical palette are most likely to be placed in the system palette.
This structure is passed as a parameter to the CreatePalette function.