#define CBM_ADDITEM 0xFE00 |
Adds a new item in a coolbar control.
CBM_ADDITEM COOLBARITEMINFO *newIteminfo; wParam = 0; lParam = (LPARAM)newIteminfo;
newIteminfo | Pointer to the item info structure of the new item to be added. |
#define CBM_ENABLE 0xFE01 |
Sets an item to be enabled or disabled.
CBM_ENABLE int id; BOOL enabled; wParam = (WPARAM)id; lParam = (LPARAM)enabled;
id | The identifier of the item to change. | |
enabled | TRUE to enable the item, FALSE to disable the item. |