Jump to content

CTLCOLOR

From EDM2
Revision as of 19:09, 25 April 2025 by Martini (talk | contribs) (Created page with "Structure that contains a control color index and value pair. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _CTLCOLOR { LONG clrIndex; Control color index.: ULONG clrValue; Control color value.: } CTLCOLOR; typedef CTLCOLOR * PCTLCOLOR ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains a control color index and value pair.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _CTLCOLOR {
  LONG      clrIndex;  /* Control color index. */
  ULONG     clrValue;  /* Control color value. */
} CTLCOLOR;

typedef   CTLCOLOR   * PCTLCOLOR ;