shell32: Stub for ExtractVersionResource16W.
This commit is contained in:
parent
6bbd65d07a
commit
ac8c6a526f
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue