LOGPALETTE structure (wingdi.h)
The LOGPALETTE structure defines a logical palette.
Syntax
typedef struct tagLOGPALETTE {
WORD palVersion;
WORD palNumEntries;
PALETTEENTRY palPalEntry[1];
} LOGPALETTE, *PLOGPALETTE, *NPLOGPALETTE, *LPLOGPALETTE;
Members
palVersion
The version number of the system.
palNumEntries
The number of entries in the logical palette.
palPalEntry[1]
Specifies an array of PALETTEENTRY structures that define the color and usage of each entry in the logical palette.
Remarks
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.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Header | wingdi.h (include Windows.h) |