Jump to content

MB2D

From EDM2
Revision as of 19:19, 25 April 2025 by Martini (talk | contribs) (Created page with "Array of button definitions. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _MB2D { CHAR achText[MAX_MB2DTEXT+1]; Text of the button.: ULONG idButtons; Button Id returned when selected.: ULONG flStyle; Button style flags.: } MB2D; typedef MB2D * PMB2D ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Array of button definitions.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _MB2D {
  CHAR      achText[MAX_MB2DTEXT+1];  /* Text of the button. */
  ULONG     idButtons;                /* Button Id returned when selected. */
  ULONG     flStyle;                  /* Button style flags. */
} MB2D;

typedef   MB2D   * PMB2D ;