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
85e355dd
Commit
85e355dd
authored
Nov 25, 2023
by
Fabian Maurer
Committed by
Alexandre Julliard
Nov 27, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add stub for GetThreadDpiHostingBehavior.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=55892
parent
b496a354
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
+11
-0
sysparams.c
dlls/user32/sysparams.c
+9
-0
user32.spec
dlls/user32/user32.spec
+1
-0
winuser.h
include/winuser.h
+1
-0
No files found.
dlls/user32/sysparams.c
View file @
85e355dd
...
...
@@ -747,6 +747,15 @@ DPI_AWARENESS_CONTEXT WINAPI SetThreadDpiAwarenessContext( DPI_AWARENESS_CONTEXT
}
/**********************************************************************
* GetThreadDpiHostingBehavior (USER32.@)
*/
DPI_HOSTING_BEHAVIOR
WINAPI
GetThreadDpiHostingBehavior
(
void
)
{
FIXME
(
"(): stub
\n
"
);
return
DPI_HOSTING_BEHAVIOR_DEFAULT
;
}
/**********************************************************************
* SetThreadDpiHostingBehavior (USER32.@)
*/
DPI_HOSTING_BEHAVIOR
WINAPI
SetThreadDpiHostingBehavior
(
DPI_HOSTING_BEHAVIOR
value
)
...
...
dlls/user32/user32.spec
View file @
85e355dd
...
...
@@ -395,6 +395,7 @@
@ stdcall GetTaskmanWindow ()
@ stdcall GetThreadDesktop(long) NtUserGetThreadDesktop
@ stdcall GetThreadDpiAwarenessContext()
@ stdcall GetThreadDpiHostingBehavior()
@ stdcall GetTitleBarInfo(long ptr) NtUserGetTitleBarInfo
@ stdcall GetTopWindow(long)
@ stdcall GetTouchInputInfo(long long ptr long)
...
...
include/winuser.h
View file @
85e355dd
...
...
@@ -4282,6 +4282,7 @@ WINUSERAPI DWORD WINAPI GetTabbedTextExtentW(HDC,LPCWSTR,INT,INT,const INT
WINUSERAPI
BOOL
WINAPI
GetTitleBarInfo
(
HWND
,
PTITLEBARINFO
);
WINUSERAPI
HDESK
WINAPI
GetThreadDesktop
(
DWORD
);
WINUSERAPI
DPI_AWARENESS_CONTEXT
WINAPI
GetThreadDpiAwarenessContext
(
void
);
WINUSERAPI
DPI_HOSTING_BEHAVIOR
WINAPI
GetThreadDpiHostingBehavior
(
void
);
WINUSERAPI
HWND
WINAPI
GetTopWindow
(
HWND
);
WINUSERAPI
BOOL
WINAPI
GetTouchInputInfo
(
HTOUCHINPUT
,
UINT
,
TOUCHINPUT
*
,
int
);
WINUSERAPI
BOOL
WINAPI
GetUpdateRect
(
HWND
,
LPRECT
,
BOOL
);
...
...
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