user32: Add stub for SetThreadDpiAwarenessContext.
Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0ca7c5c4e2
commit
40b46d900a
|
@ -2963,6 +2963,15 @@ BOOL WINAPI IsProcessDPIAware(void)
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* SetThreadDpiAwarenessContext (USER32.@)
|
||||
*/
|
||||
DPI_AWARENESS_CONTEXT WINAPI SetThreadDpiAwarenessContext( DPI_AWARENESS_CONTEXT context )
|
||||
{
|
||||
FIXME("(%p): stub\n", context);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* GetAutoRotationState [USER32.@]
|
||||
*/
|
||||
|
|
|
@ -686,6 +686,7 @@
|
|||
@ stdcall SetSystemTimer(long long long ptr)
|
||||
@ stdcall SetTaskmanWindow (long)
|
||||
@ stdcall SetThreadDesktop(long)
|
||||
@ stdcall SetThreadDpiAwarenessContext(ptr)
|
||||
@ stdcall SetTimer(long long long ptr)
|
||||
@ stdcall SetUserObjectInformationA(long long ptr long)
|
||||
@ stdcall SetUserObjectInformationW(long long ptr long)
|
||||
|
|
|
@ -289,6 +289,7 @@ typedef DWORD COLORREF, *LPCOLORREF;
|
|||
/* Handle types */
|
||||
|
||||
typedef int HFILE;
|
||||
DECLARE_HANDLE(DPI_AWARENESS_CONTEXT);
|
||||
DECLARE_HANDLE(HACCEL);
|
||||
DECLARE_HANDLE(HBITMAP);
|
||||
DECLARE_HANDLE(HBRUSH);
|
||||
|
|
|
@ -4071,6 +4071,7 @@ WINUSERAPI BOOL WINAPI SetSystemCursor(HCURSOR,DWORD);
|
|||
WINUSERAPI BOOL WINAPI SetSystemMenu(HWND,HMENU);
|
||||
WINUSERAPI UINT_PTR WINAPI SetSystemTimer(HWND,UINT_PTR,UINT,TIMERPROC);
|
||||
WINUSERAPI BOOL WINAPI SetThreadDesktop(HDESK);
|
||||
WINUSERAPI DPI_AWARENESS_CONTEXT WINAPI SetThreadDpiAwarenessContext(DPI_AWARENESS_CONTEXT);
|
||||
WINUSERAPI UINT_PTR WINAPI SetTimer(HWND,UINT_PTR,UINT,TIMERPROC);
|
||||
WINUSERAPI BOOL WINAPI SetUserObjectInformationA(HANDLE,INT,LPVOID,DWORD);
|
||||
WINUSERAPI BOOL WINAPI SetUserObjectInformationW(HANDLE,INT,LPVOID,DWORD);
|
||||
|
|
Loading…
Reference in New Issue