include/commdlg.h: Fix definition of LPPRINTHOOKPROC and LPSETUPHOOKPROC.
This commit is contained in:
parent
5cbcbdd8a8
commit
4986ba35c3
|
@ -3987,7 +3987,7 @@ struct callback_data
|
|||
IObjectWithSite *object;
|
||||
};
|
||||
|
||||
static UINT CALLBACK pdlgex_hook_proc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
|
||||
static UINT_PTR CALLBACK pdlgex_hook_proc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
|
||||
{
|
||||
if (msg == WM_INITDIALOG)
|
||||
{
|
||||
|
|
|
@ -531,8 +531,8 @@ static const WCHAR HELPMSGSTRINGW[] = { 'c','o','m','m','d','l','g','_',
|
|||
(void)SNDMSG(_hdlg, CDM_SETDEFEXT, 0, (LPARAM)(LPSTR)_pszext)
|
||||
|
||||
|
||||
typedef UINT (CALLBACK *LPPRINTHOOKPROC) (HWND, UINT, WPARAM, LPARAM);
|
||||
typedef UINT (CALLBACK *LPSETUPHOOKPROC) (HWND, UINT, WPARAM, LPARAM);
|
||||
typedef UINT_PTR (CALLBACK *LPPRINTHOOKPROC) (HWND, UINT, WPARAM, LPARAM);
|
||||
typedef UINT_PTR (CALLBACK *LPSETUPHOOKPROC) (HWND, UINT, WPARAM, LPARAM);
|
||||
|
||||
typedef struct tagPDA
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue