user32: Add a stub implementation of IsWindowRedirectedForPrint.
This commit is contained in:
parent
230785dc32
commit
1a78666654
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue