shell32: Add stub for SetCurrentProcessExplicitAppUserModelID.
This commit is contained in:
parent
7673d67c1e
commit
38c13e56a7
@ -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
|
|||||||
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;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user