The TBNOTIFY structure contains information used to process notification messages from a toolbar.
typedef struct { \\ tbn
NMHDR hdr;
int iItem;
TBBUTTON tbButton;
int cchText;
LPTSTR pszText;
} TBNOTIFY, FAR* LPTBNOTIFY;
Members
hdr
Required for all WM_NOTIFY messages.
iItem
Index of the button associated with notification.
tbButton
Address of a TBBUTTON structure that contains information about the toolbar button associated with the notification.
cchText
Count of characters in the button text.
pszText
Address of the button text.
See Also