MB2INFO: Difference between revisions
Appearance
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..." |
(No difference)
|
Latest revision as of 16:39, 15 April 2025
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 ;