Commit 38c13e56 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

shell32: Add stub for SetCurrentProcessExplicitAppUserModelID.

parent 7673d67c
...@@ -324,6 +324,7 @@ ...@@ -324,6 +324,7 @@
@ stub RealShellExecuteExW @ stub RealShellExecuteExW
@ stub RealShellExecuteW @ stub RealShellExecuteW
@ stub RegenerateUserEnvironment @ stub RegenerateUserEnvironment
@ stdcall SetCurrentProcessExplicitAppUserModelID(wstr)
@ stdcall SHAddToRecentDocs (long ptr) @ stdcall SHAddToRecentDocs (long ptr)
@ stdcall SHAppBarMessage(long ptr) @ stdcall SHAppBarMessage(long ptr)
@ stdcall SHBindToParent(ptr ptr ptr ptr) @ stdcall SHBindToParent(ptr ptr ptr ptr)
......
...@@ -1283,3 +1283,9 @@ HRESULT WINAPI SHGetLocalizedName(LPCWSTR path, LPWSTR module, UINT size, INT *r ...@@ -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); FIXME("%s %p %u %p: stub\n", debugstr_w(path), module, size, res);
return E_NOTIMPL; return E_NOTIMPL;
} }
HRESULT WINAPI SetCurrentProcessExplicitAppUserModelID(PCWSTR appid)
{
FIXME("%s: stub\n", debugstr_w(appid));
return E_NOTIMPL;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment