Commit c8187b09 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

OleInitializeWOW gets 2 arguments.

parent 2e0a42ec
...@@ -294,8 +294,8 @@ void WINAPI OleUninitialize(void) ...@@ -294,8 +294,8 @@ void WINAPI OleUninitialize(void)
/****************************************************************************** /******************************************************************************
* OleInitializeWOW [OLE32.@] * OleInitializeWOW [OLE32.@]
*/ */
HRESULT WINAPI OleInitializeWOW(DWORD x) { HRESULT WINAPI OleInitializeWOW(DWORD x, DWORD y) {
FIXME("(0x%08lx),stub!\n",x); FIXME("(0x%08lx, 0x%08lx),stub!\n",x, y);
return 0; return 0;
} }
......
...@@ -188,7 +188,7 @@ ...@@ -188,7 +188,7 @@
@ stdcall OleGetIconOfClass(ptr ptr long) @ stdcall OleGetIconOfClass(ptr ptr long)
@ stub OleGetIconOfFile @ stub OleGetIconOfFile
@ stdcall OleInitialize(ptr) @ stdcall OleInitialize(ptr)
@ stdcall OleInitializeWOW(long) @ stdcall OleInitializeWOW(long long)
@ stdcall OleIsCurrentClipboard(ptr) @ stdcall OleIsCurrentClipboard(ptr)
@ stdcall OleIsRunning(ptr) @ stdcall OleIsRunning(ptr)
@ stdcall OleLoad(ptr ptr ptr ptr) @ stdcall OleLoad(ptr ptr ptr ptr)
......
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