Commit ac8c6a52 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

shell32: Stub for ExtractVersionResource16W.

parent 6bbd65d0
...@@ -298,7 +298,7 @@ ...@@ -298,7 +298,7 @@
@ stub ExtractIconResInfoA @ stub ExtractIconResInfoA
@ stub ExtractIconResInfoW @ stub ExtractIconResInfoW
@ stdcall ExtractIconW(long wstr long) @ stdcall ExtractIconW(long wstr long)
@ stub ExtractVersionResource16W @ stdcall ExtractVersionResource16W(wstr long)
@ stub FindExeDlgProc @ stub FindExeDlgProc
@ stdcall FindExecutableA(str str ptr) @ stdcall FindExecutableA(str str ptr)
@ stdcall FindExecutableW(wstr wstr ptr) @ stdcall FindExecutableW(wstr wstr ptr)
......
...@@ -1194,3 +1194,12 @@ HRESULT WINAPI DllCanUnloadNow(void) ...@@ -1194,3 +1194,12 @@ HRESULT WINAPI DllCanUnloadNow(void)
FIXME("stub\n"); FIXME("stub\n");
return S_FALSE; return S_FALSE;
} }
/***********************************************************************
* ExtractVersionResource16W (SHELL32.@)
*/
BOOL WINAPI ExtractVersionResource16W(LPWSTR s, DWORD d)
{
FIXME("(%s %x) stub!\n", debugstr_w(s), d);
return FALSE;
}
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