- Implemented InvalidateRect and InvalidateRgn by Tim Jobling

svn path=/trunk/; revision=4439
This commit is contained in:
Richard Campbell 2003-03-27 02:27:42 +00:00
parent 90bdbbb09a
commit dd8f77cf0f

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
/* $Id: paint.c,v 1.11 2003/03/24 23:08:51 rcampbell Exp $ /* $Id: paint.c,v 1.12 2003/03/27 02:27:42 rcampbell Exp $
* *
* PROJECT: ReactOS user32.dll * PROJECT: ReactOS user32.dll
* FILE: lib/user32/windows/input.c * FILE: lib/user32/windows/input.c
@ -85,7 +85,7 @@ InvalidateRect(
CONST RECT *lpRect, CONST RECT *lpRect,
WINBOOL bErase) WINBOOL bErase)
{ {
return FALSE; return NtUserInvalidateRect( hWnd, lpRect, bErase );
} }
WINBOOL WINBOOL
@ -95,7 +95,7 @@ InvalidateRgn(
HRGN hRgn, HRGN hRgn,
WINBOOL bErase) WINBOOL bErase)
{ {
return FALSE; return NtUserInvalidateRgn( hWnd, hRgn, bErase );
} }
WINBOOL WINBOOL