RGB2: Difference between revisions
Appearance
Created page with "RGB color value. ==Example Code== <PRE> typedef struct _RGB2 { BYTE bBlue; →Blue component of the color definition.: BYTE bGreen; /* Green compone..." |
mNo edit summary |
||
Line 1: | Line 1: | ||
RGB color value. | RGB color value. | ||
<PRE> | <PRE> | ||
typedef struct _RGB2 { | typedef struct _RGB2 { | ||
Line 13: | Line 12: | ||
</PRE> | </PRE> | ||
[[Category:Data type]] | [[Category:PM Data type]] |
Latest revision as of 12:34, 21 February 2020
RGB color value.
typedef struct _RGB2 { BYTE bBlue; /* Blue component of the color definition. */ BYTE bGreen; /* Green component of the color definition. */ BYTE bRed; /* Red component of the color definition. */ BYTE fcOptions; /* Entry options. */ } RGB2; typedef RGB2 *PRGB2;