C
typedef struct { void * pPrevItem; void * pNextItem; WORD status; XCHAR * pText; void * pBitmap; WORD data; } LISTITEM;
Overview
Defines the parameters required for a list item used in list box.
Members
Members |
Description |
void * pPrevItem; |
Pointer to the next item |
void * pNextItem; |
Pointer to the next item |
WORD status; |
Specifies the status of the item. |
XCHAR * pText; |
Pointer to the text for the item |
void * pBitmap; |
Pointer to the bitmap |
WORD data; |
Some data associated with the item |