/* Palette The following are the entries of the palette table. Every entry is a 32-bit value (of which 24 bits are actually used) the lower 8 bits represent the Red component, the middle 8 bits represent the Green component, the highest 8 bits (of the 24 bits used) represent the Blue component as follows: 0xBBGGRR */
/* Palette The following are the entries of the palette table. Every entry is a 32-bit value (of which 24 bits are actually used) the lower 8 bits represent the Red component, the middle 8 bits represent the Green component, the highest 8 bits (of the 24 bits used) represent the Blue component as follows: 0xBBGGRR */ const GUI_COLOR Colors3_compressed_with_palette[] = { 0x000000,0x0000FF,0x00FF00,0x00FFFF ,0xFF0000,0xFF00FF,0xFFFF00,0xFFFFFF };
const GUI_LOGPALETTE Pal3_compressed_with_palette = { 8, /* number of entries */ 0, /* No transparency */ &Colors3_compressed_with_palette[0] };