Commit a4d7ca0f authored by Juergen Schmied's avatar Juergen Schmied Committed by Alexandre Julliard

Corrected parameter count for DialogBoxIndirectParamAorW.

parent e8256f58
......@@ -138,7 +138,7 @@ init MAIN_UserInit
134 stdcall DestroyMenu(long) DestroyMenu
135 stdcall DestroyWindow(long) DestroyWindow
136 stdcall DialogBoxIndirectParamA(long ptr long ptr long) DialogBoxIndirectParamA
137 stdcall DialogBoxIndirectParamAorW(long ptr long ptr long) DialogBoxIndirectParamA
137 stdcall DialogBoxIndirectParamAorW(long ptr long ptr long long) DialogBoxIndirectParamAorW
138 stdcall DialogBoxIndirectParamW(long ptr long ptr long) DialogBoxIndirectParamW
139 stdcall DialogBoxParamA(long str long ptr long) DialogBoxParamA
140 stdcall DialogBoxParamW(long wstr long ptr long) DialogBoxParamW
......
......@@ -1065,6 +1065,21 @@ INT WINAPI DialogBoxIndirectParamW(HINSTANCE hInstance, LPCVOID template,
return -1;
}
/***********************************************************************
* DialogBoxIndirectParamAorW (USER32.138)
*/
INT WINAPI DialogBoxIndirectParamAorW(HINSTANCE hInstance, LPCVOID template,
HWND owner, DLGPROC dlgProc,
LPARAM param, DWORD x )
{
HWND hwnd;
FIXME("0x%08x %p 0x%08x %p 0x%08lx 0x%08lx\n",
hInstance, template, owner, dlgProc, param, x);
hwnd = CreateDialogIndirectParamW( hInstance, template,
owner, dlgProc, param );
if (hwnd) return DIALOG_DoDialogBox( hwnd, owner );
return -1;
}
/***********************************************************************
* EndDialog16 (USER.88)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment