include: Add header information for CDN_INCLUDEITEM notification.
This commit is contained in:
parent
27a537d13f
commit
810508f7de
|
@ -149,6 +149,25 @@ typedef struct
|
|||
DECL_WINELIB_TYPE_AW(OFNOTIFY)
|
||||
DECL_WINELIB_TYPE_AW(LPOFNOTIFY)
|
||||
|
||||
typedef struct _OFNOTIFYEXA
|
||||
{
|
||||
NMHDR hdr;
|
||||
LPOPENFILENAMEA lpOFN;
|
||||
LPVOID psf;
|
||||
LPVOID pidl;
|
||||
} OFNOTIFYEXA, *LPOFNOTIFYEXA;
|
||||
|
||||
typedef struct _OFNOTIFYEXW
|
||||
{
|
||||
NMHDR hdr;
|
||||
LPOPENFILENAMEW lpOFN;
|
||||
LPVOID psf;
|
||||
LPVOID pidl;
|
||||
} OFNOTIFYEXW, *LPOFNOTIFYEXW;
|
||||
|
||||
DECL_WINELIB_TYPE_AW(OFNOTIFYEX)
|
||||
DECL_WINELIB_TYPE_AW(LPOFNOTIFYEX)
|
||||
|
||||
typedef UINT (CALLBACK *LPCCHOOKPROC) (HWND, UINT, WPARAM, LPARAM);
|
||||
|
||||
typedef struct {
|
||||
|
@ -414,7 +433,6 @@ static const WCHAR HELPMSGSTRINGW[] = { 'c','o','m','m','d','l','g','_',
|
|||
#endif
|
||||
#define HELPMSGSTRING WINELIB_NAME_AW(HELPMSGSTRING)
|
||||
|
||||
|
||||
#define CD_LBSELNOITEMS -1
|
||||
#define CD_LBSELCHANGE 0
|
||||
#define CD_LBSELSUB 1
|
||||
|
@ -430,6 +448,7 @@ static const WCHAR HELPMSGSTRINGW[] = { 'c','o','m','m','d','l','g','_',
|
|||
#define CDN_HELP (CDN_FIRST - 0x0004)
|
||||
#define CDN_FILEOK (CDN_FIRST - 0x0005)
|
||||
#define CDN_TYPECHANGE (CDN_FIRST - 0x0006)
|
||||
#define CDN_INCLUDEITEM (CDN_FIRST - 0x0007)
|
||||
|
||||
#define CDM_FIRST (WM_USER + 100)
|
||||
#define CDM_LAST (WM_USER + 200)
|
||||
|
|
Loading…
Reference in New Issue