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