Commit 1a786666 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

user32: Add a stub implementation of IsWindowRedirectedForPrint.

parent 230785dc
......@@ -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 =
{
......
......@@ -450,6 +450,7 @@
@ stdcall IsWindow(long)
@ stdcall IsWindowEnabled(long)
# @ stub IsWindowInDestroy
@ stdcall IsWindowRedirectedForPrint(long)
@ stdcall IsWindowUnicode(long)
@ stdcall IsWindowVisible(long)
@ stdcall IsZoomed(long)
......
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