From 81ef6d78bffe1d5c3bda5ca593e12b4a0e9be148 Mon Sep 17 00:00:00 2001 From: David Welch Date: Fri, 1 Aug 2003 14:44:03 +0000 Subject: [PATCH] - Forgot this file. svn path=/trunk/; revision=5367 --- reactos/subsys/win32k/ntuser/window.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/ntuser/window.c b/reactos/subsys/win32k/ntuser/window.c index c8eb9e505a5..1209f218caa 100644 --- a/reactos/subsys/win32k/ntuser/window.c +++ b/reactos/subsys/win32k/ntuser/window.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: window.c,v 1.72 2003/08/01 11:56:43 weiden Exp $ +/* $Id: window.c,v 1.73 2003/08/01 14:44:03 dwelch Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -2172,6 +2172,12 @@ NtUserBuildHwndList( return dwCount; } +VOID STDCALL +NtUserValidateRect(HWND Wnd, const RECT* Rect) +{ + (VOID)PaintRedrawWindow(Wnd, Rect, 0, RDW_VALIDATE | RDW_NOCHILDREN, 0); +} + /* * @unimplemented */ @@ -2188,5 +2194,4 @@ NtUserDrawMenuBarTemp( return 0; } - /* EOF */