Release 960805
[wine] / include / combo.h
1 /*
2  * Combo box definitions
3  */
4
5
6 typedef struct {
7   WND*    wndSelf;
8   DWORD   dwStyle;
9   DWORD   dwState;
10   HWND    hWndEdit;
11   HWND    hWndLBox;
12   WORD    LBoxTop;
13   BOOL    DropDownVisible;
14   short   LastSel;
15   RECT16  RectEdit;
16   RECT16  RectButton;
17   BOOL    bRedrawFlag;
18 } HEADCOMBO,*LPHEADCOMBO;
19
20 LRESULT ComboBoxWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
21 LRESULT ComboLBoxWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);