Commit 9bd51fff authored by Sven Baars's avatar Sven Baars Committed by Alexandre Julliard

user32: Add EnableNonClientDpiScaling stub.

parent d480436d
...@@ -3664,6 +3664,16 @@ BOOL WINAPI IsProcessDPIAware(void) ...@@ -3664,6 +3664,16 @@ BOOL WINAPI IsProcessDPIAware(void)
return GetAwarenessFromDpiAwarenessContext( GetThreadDpiAwarenessContext() ) != DPI_AWARENESS_UNAWARE; return GetAwarenessFromDpiAwarenessContext( GetThreadDpiAwarenessContext() ) != DPI_AWARENESS_UNAWARE;
} }
/**********************************************************************
* EnableNonClientDpiScaling (USER32.@)
*/
BOOL WINAPI EnableNonClientDpiScaling( HWND hwnd )
{
FIXME("(%p): stub\n", hwnd);
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
/*********************************************************************** /***********************************************************************
* GetDpiForSystem (USER32.@) * GetDpiForSystem (USER32.@)
*/ */
......
...@@ -205,6 +205,7 @@ ...@@ -205,6 +205,7 @@
@ stdcall EmptyClipboard() @ stdcall EmptyClipboard()
@ stdcall EnableMenuItem(long long long) @ stdcall EnableMenuItem(long long long)
@ stdcall EnableMouseInPointer(long) @ stdcall EnableMouseInPointer(long)
@ stdcall EnableNonClientDpiScaling(long)
@ stdcall EnableScrollBar(long long long) @ stdcall EnableScrollBar(long long long)
@ stdcall EnableWindow(long long) @ stdcall EnableWindow(long long)
@ stdcall EndDeferWindowPos(long) @ stdcall EndDeferWindowPos(long)
......
...@@ -3702,6 +3702,7 @@ WINUSERAPI INT WINAPI DrawTextExW(HDC,LPWSTR,INT,LPRECT,UINT,LPDRAWTEXTP ...@@ -3702,6 +3702,7 @@ WINUSERAPI INT WINAPI DrawTextExW(HDC,LPWSTR,INT,LPRECT,UINT,LPDRAWTEXTP
WINUSERAPI BOOL WINAPI EmptyClipboard(void); WINUSERAPI BOOL WINAPI EmptyClipboard(void);
WINUSERAPI BOOL WINAPI EnableMenuItem(HMENU,UINT,UINT); WINUSERAPI BOOL WINAPI EnableMenuItem(HMENU,UINT,UINT);
WINUSERAPI BOOL WINAPI EnableMouseInPointer(BOOL); WINUSERAPI BOOL WINAPI EnableMouseInPointer(BOOL);
WINUSERAPI BOOL WINAPI EnableNonClientDpiScaling(HWND);
WINUSERAPI BOOL WINAPI EnableScrollBar(HWND,UINT,UINT); WINUSERAPI BOOL WINAPI EnableScrollBar(HWND,UINT,UINT);
WINUSERAPI BOOL WINAPI EnableWindow(HWND,BOOL); WINUSERAPI BOOL WINAPI EnableWindow(HWND,BOOL);
WINUSERAPI BOOL WINAPI EndDeferWindowPos(HDWP); WINUSERAPI BOOL WINAPI EndDeferWindowPos(HDWP);
......
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