user32: Add a stub implementation of IsWindowRedirectedForPrint.

This commit is contained in:
Hans Leidekker 2015-07-29 11:38:13 +02:00 committed by Alexandre Julliard
parent 230785dc32
commit 1a78666654
2 changed files with 11 additions and 0 deletions

View File

@ -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 =
{

View File

@ -450,6 +450,7 @@
@ stdcall IsWindow(long)
@ stdcall IsWindowEnabled(long)
# @ stub IsWindowInDestroy
@ stdcall IsWindowRedirectedForPrint(long)
@ stdcall IsWindowUnicode(long)
@ stdcall IsWindowVisible(long)
@ stdcall IsZoomed(long)