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