projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Added tracking support and fixed loading of resource strings.
[wine]
/
include
/
comboex.h
1
/*
2
* ComboBoxEx class extra info
3
*
4
* Copyright 1998 Eric Kohl
5
*/
6
7
#ifndef __WINE_COMBOEX_H
8
#define __WINE_COMBOEX_H
9
10
11
typedef struct tagCOMBOEX_INFO
12
{
13
HIMAGELIST himl;
14
HWND32 hwndCombo;
15
DWORD dwExtStyle;
16
17
18
} COMBOEX_INFO;
19
20
21
extern void COMBOEX_Register (void);
22
23
#endif /* __WINE_COMBOEX_H */