mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +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
|
||||
* 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
|
||||
* FILE: lib/user32/windows/input.c
|
||||
|
@ -85,7 +85,7 @@ InvalidateRect(
|
|||
CONST RECT *lpRect,
|
||||
WINBOOL bErase)
|
||||
{
|
||||
return FALSE;
|
||||
return NtUserInvalidateRect( hWnd, lpRect, bErase );
|
||||
}
|
||||
|
||||
WINBOOL
|
||||
|
@ -95,7 +95,7 @@ InvalidateRgn(
|
|||
HRGN hRgn,
|
||||
WINBOOL bErase)
|
||||
{
|
||||
return FALSE;
|
||||
return NtUserInvalidateRgn( hWnd, hRgn, bErase );
|
||||
}
|
||||
|
||||
WINBOOL
|
||||
|
|
Loading…
Reference in a new issue