mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
- Implemented InvalidateRect and InvalidateRgn by Tim Jobling
svn path=/trunk/; revision=4439
This commit is contained in:
parent
90bdbbb09a
commit
dd8f77cf0f
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue