Jump to content

MB2D: Difference between revisions

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

Latest revision as of 19:19, 25 April 2025

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 ;