Commit aa6b8072 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

shcore: Add AppUserModelID stubs.

parent 35216c79
...@@ -221,3 +221,16 @@ HRESULT WINAPI IUnknown_SetSite(IUnknown *obj, IUnknown *site) ...@@ -221,3 +221,16 @@ HRESULT WINAPI IUnknown_SetSite(IUnknown *obj, IUnknown *site)
return hr; return hr;
} }
HRESULT WINAPI SetCurrentProcessExplicitAppUserModelID(const WCHAR *appid)
{
FIXME("%s: stub\n", debugstr_w(appid));
return E_NOTIMPL;
}
HRESULT WINAPI GetCurrentProcessExplicitAppUserModelID(const WCHAR **appid)
{
FIXME("%p: stub\n", appid);
*appid = NULL;
return E_NOTIMPL;
}
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
@ stub DllCanUnloadNow @ stub DllCanUnloadNow
@ stub DllGetActivationFactory @ stub DllGetActivationFactory
@ stub DllGetClassObject @ stub DllGetClassObject
@ stdcall GetCurrentProcessExplicitAppUserModelID(ptr) shell32.GetCurrentProcessExplicitAppUserModelID @ stdcall GetCurrentProcessExplicitAppUserModelID(ptr)
@ stdcall GetDpiForMonitor(long long ptr ptr) @ stdcall GetDpiForMonitor(long long ptr ptr)
@ stub GetDpiForShellUIComponent @ stub GetDpiForShellUIComponent
@ stdcall GetProcessDpiAwareness(long ptr) @ stdcall GetProcessDpiAwareness(long ptr)
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
@ stdcall SHStrDupW(wstr ptr) shlwapi.SHStrDupW @ stdcall SHStrDupW(wstr ptr) shlwapi.SHStrDupW
@ stdcall SHUnicodeToAnsi(wstr ptr ptr) shlwapi.SHUnicodeToAnsi @ stdcall SHUnicodeToAnsi(wstr ptr ptr) shlwapi.SHUnicodeToAnsi
@ stdcall SHUnicodeToUnicode(wstr ptr long) shlwapi.SHUnicodeToUnicode @ stdcall SHUnicodeToUnicode(wstr ptr long) shlwapi.SHUnicodeToUnicode
@ stdcall SetCurrentProcessExplicitAppUserModelID(wstr) shell32.SetCurrentProcessExplicitAppUserModelID @ stdcall SetCurrentProcessExplicitAppUserModelID(wstr)
@ stdcall SetProcessDpiAwareness(long) @ stdcall SetProcessDpiAwareness(long)
@ stub SetProcessReference @ stub SetProcessReference
@ stub UnregisterScaleChangeEvent @ stub UnregisterScaleChangeEvent
......
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