Jump to content

RGB: Difference between revisions

From EDM2
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..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
RGB color value.  
RGB color value.


==Example Code==
<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;