Module: wine Branch: master Commit: 1a78666654f60fdd408f3627f7d8828437148655 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1a78666654f60fdd408f3627f7...
Author: Hans Leidekker hans@codeweavers.com Date: Wed Jul 29 11:38:13 2015 +0200
user32: Add a stub implementation of IsWindowRedirectedForPrint.
---
dlls/user32/misc.c | 10 ++++++++++ dlls/user32/user32.spec | 1 + 2 files changed, 11 insertions(+)
diff --git a/dlls/user32/misc.c b/dlls/user32/misc.c index e395d2f..d2b4b73 100644 --- a/dlls/user32/misc.c +++ b/dlls/user32/misc.c @@ -748,6 +748,16 @@ BOOL WINAPI IsTouchWindow( HWND hwnd, PULONG flags ) return FALSE; }
+/********************************************************************** + * IsWindowRedirectedForPrint [USER32.@] + */ +BOOL WINAPI IsWindowRedirectedForPrint( HWND hwnd ) +{ + FIXME("(%p): stub\n", hwnd); + return FALSE; +} + + static const WCHAR imeW[] = {'I','M','E',0}; const struct builtin_class_descr IME_builtin_class = { diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec index 204ccd4..f0e541f 100644 --- a/dlls/user32/user32.spec +++ b/dlls/user32/user32.spec @@ -450,6 +450,7 @@ @ stdcall IsWindow(long) @ stdcall IsWindowEnabled(long) # @ stub IsWindowInDestroy +@ stdcall IsWindowRedirectedForPrint(long) @ stdcall IsWindowUnicode(long) @ stdcall IsWindowVisible(long) @ stdcall IsZoomed(long)