shell32: Initial stub for SHGetImageList.

This commit is contained in:
Aric Stewart 2009-01-20 09:33:02 -06:00 committed by Alexandre Julliard
parent 20d6bc8ac7
commit c31a0cc4e1
2 changed files with 7 additions and 0 deletions

View File

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

View File

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