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