From c31a0cc4e18f465584ace353ddd75aac117dac79 Mon Sep 17 00:00:00 2001 From: Aric Stewart Date: Tue, 20 Jan 2009 09:33:02 -0600 Subject: [PATCH] shell32: Initial stub for SHGetImageList. --- dlls/shell32/shell32.spec | 1 + dlls/shell32/shellord.c | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 6a51bcd29a0..b64d8efae06 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -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!! diff --git a/dlls/shell32/shellord.c b/dlls/shell32/shellord.c index 51d6fc9d227..82a0e69ac42 100644 --- a/dlls/shell32/shellord.c +++ b/dlls/shell32/shellord.c @@ -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; +} -- 2.11.4.GIT