Module: wine Branch: master Commit: 38c13e56a7e8588ff1dfb42425d889ddabf58368 URL: http://source.winehq.org/git/wine.git/?a=commit;h=38c13e56a7e8588ff1dfb42425...
Author: André Hentschel nerv@dawncrow.de Date: Fri Jul 1 00:03:55 2011 +0200
shell32: Add stub for SetCurrentProcessExplicitAppUserModelID.
---
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..04b72c9 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -324,6 +324,7 @@ @ stub RealShellExecuteExW @ stub RealShellExecuteW @ stub RegenerateUserEnvironment +@ stdcall SetCurrentProcessExplicitAppUserModelID(wstr) @ 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; +}