Jump to content

RGB

From EDM2
Revision as of 17:51, 8 February 2020 by Martini (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

RGB color value.

Example Code

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;