The LOGPALETTE data structure defines a logical color palette.
typedef struct
{
WORD palVersion;
WORD palNumEntries;
PALETTEENTRY palPalEntry[];
} LOGPALETTE;
The LOGPALETTE structure has the following fields:
Field | Description | |
palVersion | Specifies the Windows version number for the structure (currently 0x300). | |
palNumEntries | Specifies the number of palette color entries. | |
palPalEntry [ ] | Specifies an array of PALETTEENTRY data 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. This is because entries earlier in the logical palette are most likely to be placed in the system palette.
This data structure is passed as a parameter to the CreatePalette function.