shell32: Add stub for SetCurrentProcessExplicitAppUserModelID.

This commit is contained in:
André Hentschel 2011-07-01 00:03:55 +02:00 committed by Alexandre Julliard
parent 7673d67c1e
commit 38c13e56a7
2 changed files with 7 additions and 0 deletions

View File

@ -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)

View File

@ -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;
}