Jump to content

MB2INFO

From EDM2
Revision as of 16:39, 15 April 2025 by Martini (talk | contribs) (Created page with "Button information block. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _MB2INFO { ULONG cb; Current size of the structure.: HPOINTER hIcon; Icon handle.: ULONG cButtons; Number of buttons.: ULONG flStyle; Icon style flags.: HWND hwndNotify; Owner notification handle.: MB2D mb2d[1]; /* Array of button definitions...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Button information block.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _MB2INFO {
  ULONG        cb;          /*  Current size of the structure. */
  HPOINTER     hIcon;       /*  Icon handle. */
  ULONG        cButtons;    /*  Number of buttons. */
  ULONG        flStyle;     /*  Icon style flags. */
  HWND         hwndNotify;  /*  Owner notification handle. */
  MB2D         mb2d[1];     /*  Array of button definitions. */
} MB2INFO;

typedef   MB2INFO   * PMB2INFO ;