Jump to content

CTLCOLOR: Difference between revisions

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

Latest revision as of 19:09, 25 April 2025

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 ;