Jump to content

PAINTPOT

From EDM2
Revision as of 03:02, 3 May 2025 by Martini (talk | contribs) (Created page with "PAINTPOT structure. == Type == struct == C Declaration Method== typedef struct == Example Code== <PRE> typedef struct _PAINTPOT { CELL cell; Size of the data that follows.: ULONG ulRGB; Color of this paintpot.: } PAINTPOT; typedef PAINTPOT * PPAINTPOT ; </PRE> Category:WPS Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

PAINTPOT structure.

Type

struct

C Declaration Method

typedef struct

Example Code

typedef struct _PAINTPOT {
  CELL      cell;   /*  Size of the data that follows. */
  ULONG     ulRGB;  /*  Color of this paintpot. */
} PAINTPOT;

typedef   PAINTPOT   * PPAINTPOT ;