shell32: Add SHCreateFileExtractIconW stub.

This commit is contained in:
Nikolay Sivov 2010-03-09 15:10:08 +03:00 committed by Alexandre Julliard
parent 345ab7d591
commit 82a4b85424
2 changed files with 8 additions and 0 deletions

View File

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

View File

@ -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]
*/