shell32: Add stub for SetCurrentProcessExplicitAppUserModelID

André Hentschel nerv at dawncrow.de
Thu Jun 30 17:03:55 CDT 2011


needed by http://code.google.com/p/win7shell/
---
 dlls/shell32/shell32.spec   |    1 +
 dlls/shell32/shell32_main.c |    6 ++++++
 2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec
index 97e52e5..8d0e016 100644
--- a/dlls/shell32/shell32.spec
+++ b/dlls/shell32/shell32.spec
@@ -324,6 +324,7 @@
 @ stub RealShellExecuteExW
 @ stub RealShellExecuteW
 @ stub RegenerateUserEnvironment
+@ stdcall SetCurrentProcessExplicitAppUserModelID(ptr)
 @ stdcall SHAddToRecentDocs (long ptr)
 @ stdcall SHAppBarMessage(long ptr)
 @ stdcall SHBindToParent(ptr ptr ptr ptr)
diff --git a/dlls/shell32/shell32_main.c b/dlls/shell32/shell32_main.c
index d03d3d9..dd04280 100644
--- a/dlls/shell32/shell32_main.c
+++ b/dlls/shell32/shell32_main.c
@@ -1283,3 +1283,9 @@ HRESULT WINAPI SHGetLocalizedName(LPCWSTR path, LPWSTR module, UINT size, INT *r
     FIXME("%s %p %u %p: stub\n", debugstr_w(path), module, size, res);
     return E_NOTIMPL;
 }
+
+HRESULT WINAPI SetCurrentProcessExplicitAppUserModelID(PCWSTR appid)
+{
+    FIXME("%s: stub\n", debugstr_w(appid));
+    return E_NOTIMPL;
+}
-- 

Best Regards, André Hentschel



More information about the wine-patches mailing list