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..."
(No difference)

Revision as of 17:52, 8 February 2020

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;