shell32: Stub for ExtractVersionResource16W.

This commit is contained in:
Stefan Leichter 2009-05-02 09:51:53 +02:00 committed by Alexandre Julliard
parent 6bbd65d07a
commit ac8c6a526f
2 changed files with 10 additions and 1 deletions

View File

@ -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)

View File

@ -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;
}