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