C
#define LbSetSel(pLb, pItem) \ if(!(pItem->status & LB_STS_SELECTED)) \ LbChangeSel((LISTBOX *)pLb, pItem);
Overview
This macro sets the selection status of an item to selected.
Input Parameters
Input Parameters |
Description |
pLb |
The pointer to the list box object. |
pItem |
The pointer to the item the selection status will be set. |
Returns
none
Preconditions
none
Side Effects
none