Release 941017
[wine/gsoc-2012-control.git] / include / listbox.h
blob22148ec8038abcefd708cece965b5af9475e0935
1 /*
2 * List Box definitions
3 */
6 typedef struct tagLISTSTRUCT {
7 DRAWITEMSTRUCT dis;
8 HANDLE hMem;
9 HANDLE hData;
10 char *itemText;
11 void *lpNext;
12 } LISTSTRUCT;
13 typedef LISTSTRUCT FAR* LPLISTSTRUCT;
16 typedef struct tagHEADLIST {
17 short FirstVisible;
18 short ItemsCount;
19 short ItemsVisible;
20 short ColumnsVisible;
21 short ItemsPerColumn;
22 short ItemFocused;
23 short PrevFocused;
24 short StdItemHeight;
25 short ColumnsWidth;
26 short DrawCtlType;
27 void *lpFirst;
28 DWORD dwStyle;
29 HWND hWndLogicParent;
30 HFONT hFont;
31 } HEADLIST;
32 typedef HEADLIST FAR* LPHEADLIST;