Jump to content

RGB2

From EDM2
Revision as of 17:52, 8 February 2020 by Martini (talk | contribs) (Created page with "RGB color value. ==Example Code== <PRE> typedef struct _RGB2 { BYTE bBlue; Blue component of the color definition.: BYTE bGreen; /* Green compone...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

RGB color value.

Example Code

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;