Module: wine Branch: master Commit: c31a0cc4e18f465584ace353ddd75aac117dac79 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c31a0cc4e18f465584ace353dd...
Author: Aric Stewart aric@codeweavers.com Date: Tue Jan 20 09:33:02 2009 -0600
shell32: Initial stub for SHGetImageList.
---
dlls/shell32/shell32.spec | 1 + dlls/shell32/shellord.c | 6 ++++++ 2 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 6a51bcd..b64d8ef 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 51d6fc9..82a0e69 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; +}