shell32: Add SHCreateFileExtractIconW stub.
This commit is contained in:
parent
345ab7d591
commit
82a4b85424
|
@ -258,6 +258,7 @@
|
|||
714 stdcall @(ptr) SHELL32_714 # PathIsTemporaryW
|
||||
727 stdcall SHGetImageList(long ptr ptr)
|
||||
730 stdcall -noname RestartDialogEx(long wstr long long)
|
||||
743 stdcall SHCreateFileExtractIconW(wstr long ptr ptr)
|
||||
|
||||
1217 stub FOOBAR1217 # no joke! This is the real name!!
|
||||
|
||||
|
|
|
@ -795,6 +795,13 @@ HICON WINAPI ExtractIconW(HINSTANCE hInstance, LPCWSTR lpszFile, UINT nIconIndex
|
|||
return NULL;
|
||||
}
|
||||
|
||||
HRESULT WINAPI SHCreateFileExtractIconW(LPCWSTR file, DWORD attribs, REFIID riid, void **ppv)
|
||||
{
|
||||
FIXME("%s, %x, %s, %p\n", debugstr_w(file), attribs, debugstr_guid(riid), ppv);
|
||||
*ppv = NULL;
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* Printer_LoadIconsW [SHELL32.205]
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue