Jump to content

RGB2: Difference between revisions

From EDM2
Created page with "RGB color value. ==Example Code== <PRE> typedef struct _RGB2 { BYTE bBlue; Blue component of the color definition.: BYTE bGreen; /* Green compone..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
RGB color value.  
RGB color value.


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