Commit c31a0cc4 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

shell32: Initial stub for SHGetImageList.

parent 20d6bc8a
......@@ -256,6 +256,7 @@
704 stdcall -noname GUIDFromStringW(wstr ptr)
714 stdcall @(ptr) SHELL32_714 # PathIsTemporaryW
727 stdcall SHGetImageList(long ptr ptr)
730 stdcall -noname RestartDialogEx(long wstr long long)
1217 stub FOOBAR1217 # no joke! This is the real name!!
......
......@@ -2017,3 +2017,9 @@ BOOL WINAPI LinkWindow_UnregisterClass(void)
void WINAPI SHFlushSFCache(void)
{
}
HRESULT WINAPI SHGetImageList(int iImageList, REFIID riid, void **ppv)
{
FIXME("STUB: %i %s\n",iImageList,debugstr_guid(riid));
return E_NOINTERFACE;
}
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