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

shell32: Stub for ExtractVersionResource16W.

parent 6bbd65d0
......@@ -298,7 +298,7 @@
@ stub ExtractIconResInfoA
@ stub ExtractIconResInfoW
@ stdcall ExtractIconW(long wstr long)
@ stub ExtractVersionResource16W
@ stdcall ExtractVersionResource16W(wstr long)
@ stub FindExeDlgProc
@ stdcall FindExecutableA(str str ptr)
@ stdcall FindExecutableW(wstr wstr ptr)
......
......@@ -1194,3 +1194,12 @@ HRESULT WINAPI DllCanUnloadNow(void)
FIXME("stub\n");
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