shell32: Initial stub for SHGetImageList.
This commit is contained in:
parent
20d6bc8ac7
commit
c31a0cc4e1
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue