Release 960805
[wine/multimedia.git] / include / combo.h
blob973253354cfae7433e905db45e9a945e06a692e4
1 /*
2 * Combo box definitions
3 */
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;
20 LRESULT ComboBoxWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
21 LRESULT ComboLBoxWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);