Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
aa6b8072
Commit
aa6b8072
authored
Nov 26, 2018
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 26, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shcore: Add AppUserModelID stubs.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
35216c79
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
2 deletions
+15
-2
main.c
dlls/shcore/main.c
+13
-0
shcore.spec
dlls/shcore/shcore.spec
+2
-2
No files found.
dlls/shcore/main.c
View file @
aa6b8072
...
...
@@ -221,3 +221,16 @@ HRESULT WINAPI IUnknown_SetSite(IUnknown *obj, IUnknown *site)
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
;
}
dlls/shcore/shcore.spec
View file @
aa6b8072
...
...
@@ -6,7 +6,7 @@
@ stub DllCanUnloadNow
@ stub DllGetActivationFactory
@ stub DllGetClassObject
@ stdcall GetCurrentProcessExplicitAppUserModelID(ptr)
shell32.GetCurrentProcessExplicitAppUserModelID
@ stdcall GetCurrentProcessExplicitAppUserModelID(ptr)
@ stdcall GetDpiForMonitor(long long ptr ptr)
@ stub GetDpiForShellUIComponent
@ stdcall GetProcessDpiAwareness(long ptr)
...
...
@@ -77,7 +77,7 @@
@ stdcall SHStrDupW(wstr ptr) shlwapi.SHStrDupW
@ stdcall SHUnicodeToAnsi(wstr ptr ptr) shlwapi.SHUnicodeToAnsi
@ stdcall SHUnicodeToUnicode(wstr ptr long) shlwapi.SHUnicodeToUnicode
@ stdcall SetCurrentProcessExplicitAppUserModelID(wstr)
shell32.SetCurrentProcessExplicitAppUserModelID
@ stdcall SetCurrentProcessExplicitAppUserModelID(wstr)
@ stdcall SetProcessDpiAwareness(long)
@ stub SetProcessReference
@ stub UnregisterScaleChangeEvent
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment