mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 08:13:18 +00:00
1ed4ecffa8
Removed warnings. Made the include files self-sufficient. Some Solaris fixes.
26 lines
397 B
C
26 lines
397 B
C
/*
|
|
* ComboBoxEx class extra info
|
|
*
|
|
* Copyright 1998 Eric Kohl
|
|
*/
|
|
|
|
#ifndef __WINE_COMBOEX_H
|
|
#define __WINE_COMBOEX_H
|
|
|
|
#include "commctrl.h"
|
|
#include "windef.h"
|
|
|
|
typedef struct tagCOMBOEX_INFO
|
|
{
|
|
HIMAGELIST himl;
|
|
HWND hwndCombo;
|
|
DWORD dwExtStyle;
|
|
|
|
|
|
} COMBOEX_INFO;
|
|
|
|
|
|
extern VOID COMBOEX_Register (VOID);
|
|
extern VOID COMBOEX_Unregister (VOID);
|
|
|
|
#endif /* __WINE_COMBOEX_H */
|