projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Release 950319
[wine]
/
include
/
combo.h
1
/*
2
* Combo box definitions
3
*/
4
5
6
typedef struct tagHEADCOMBO {
7
DWORD dwStyle;
8
DWORD dwState;
9
HWND hWndEdit;
10
HWND hWndLBox;
11
short LastSel;
12
RECT RectEdit;
13
BOOL bRedrawFlag;
14
} HEADCOMBO;
15
typedef HEADCOMBO FAR* LPHEADCOMBO;
16
17