LTOOLBARTOOL

typedef struct _LTOOLBARTOOL
{
   L_UINT uStructSize;
   L_UINT uButtonsCount;
   pLBUTTONINFO pButtons;
   L_UINT32 dwTag;

} LTOOLBARTOOL, L_FAR *pLTOOLBARTOOL;

The LTOOLBARTOOL structure represents a button in the toolbar. This button could be a single button or it could be a button in a list of buttons (sub toolbar).

Member

Description

uStructSize

The size of this structure.

uButtonsCount

Number of buttons in the toolbar.

pButtons

Address of an array of LBUTTONINFO structures that contain information about the buttons to add to the toolbar.

dwTag

User defined data that will retrieved with the toolbar information.

Comments

The LTOOLBARTOOL could have one or more button that will represent a sub toolbar in the main toolbar.