Austin English : shell32: Add a stub SHGetKnownFolderIDList.

Alexandre Julliard julliard at winehq.org
Tue May 1 13:12:13 CDT 2012


Module: wine
Branch: master
Commit: adc0518af74d79e45b68a4119d3532c6c4e8599e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=adc0518af74d79e45b68a4119d3532c6c4e8599e

Author: Austin English <austinenglish at gmail.com>
Date:   Mon Apr 30 17:52:12 2012 -0500

shell32: Add a stub SHGetKnownFolderIDList.

---

 dlls/shell32/shell32.spec |    1 +
 dlls/shell32/shellpath.c  |    6 ++++++
 2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec
index 2ac4310..29685e8 100644
--- a/dlls/shell32/shell32.spec
+++ b/dlls/shell32/shell32.spec
@@ -374,6 +374,7 @@
 @ stdcall SHGetInstanceExplorer(long)
 @ stdcall SHGetItemFromDataObject(ptr long ptr ptr)
 @ stdcall SHGetItemFromObject(ptr ptr ptr)
+@ stdcall SHGetKnownFolderIDList(ptr long ptr ptr)
 @ stdcall SHGetKnownFolderPath(ptr long ptr ptr)
 @ stdcall SHGetLocalizedName(wstr ptr long ptr)
 @ stdcall SHGetMalloc(ptr)
diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c
index c883e64..800019f 100644
--- a/dlls/shell32/shellpath.c
+++ b/dlls/shell32/shellpath.c
@@ -4009,3 +4009,9 @@ HRESULT WINAPI KnownFolderManager_Constructor( IUnknown *punk, REFIID riid, void
 
     return foldermanager_create( ppv );
 }
+
+HRESULT WINAPI SHGetKnownFolderIDList(REFKNOWNFOLDERID rfid, DWORD flags, HANDLE token, PIDLIST_ABSOLUTE *pidl)
+{
+        FIXME("%s, 0x%08x, %p, %p\n", debugstr_guid(rfid), flags, token, pidl);
+        return E_NOTIMPL;
+}




More information about the wine-cvs mailing list