Module: wine Branch: master Commit: 5cf42c0c97cce235101da6762a4cdfc965a09f0d URL: http://source.winehq.org/git/wine.git/?a=commit;h=5cf42c0c97cce235101da6762a...
Author: Louis Lenders xerox.xerox2000x@gmail.com Date: Fri Apr 1 08:18:30 2016 +0200
user32: Add stub for IsProcessDPIAware.
Signed-off-by: Louis Lenders xerox.xerox2000x@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/user32/sysparams.c | 9 +++++++++ dlls/user32/user32.spec | 1 + 2 files changed, 10 insertions(+)
diff --git a/dlls/user32/sysparams.c b/dlls/user32/sysparams.c index 1787b99..a42a302 100644 --- a/dlls/user32/sysparams.c +++ b/dlls/user32/sysparams.c @@ -2904,3 +2904,12 @@ BOOL WINAPI SetProcessDPIAware( VOID )
return TRUE; } + +/*********************************************************************** + * IsProcessDPIAware (USER32.@) + */ +BOOL WINAPI IsProcessDPIAware(void) +{ + FIXME( "stub!\n"); + return FALSE; +} diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec index 5c19634..c479879 100644 --- a/dlls/user32/user32.spec +++ b/dlls/user32/user32.spec @@ -446,6 +446,7 @@ # @ stub IsHungThread @ stdcall IsIconic(long) @ stdcall IsMenu(long) +@ stdcall IsProcessDPIAware() @ stdcall IsRectEmpty(ptr) # @ stub IsServerSideWindow @ stdcall IsTouchWindow(long ptr)