Implemented RedrawWindow()

svn path=/trunk/; revision=4336
This commit is contained in:
Richard Campbell 2003-03-18 07:19:17 +00:00
parent 2c77bbfae2
commit cc078531ba
3 changed files with 9 additions and 18 deletions

View file

@ -1087,13 +1087,9 @@ NtUserRealChildWindowFromPoint(
DWORD Unknown1, DWORD Unknown1,
DWORD Unknown2); DWORD Unknown2);
DWORD BOOL STDCALL
STDCALL NtUserRedrawWindow(HWND hWnd, CONST RECT *lprcUpdate, HRGN hrgnUpdate, UINT flags);
NtUserRedrawWindow(
DWORD Unknown0,
DWORD Unknown1,
DWORD Unknown2,
DWORD Unknown3);
RTL_ATOM RTL_ATOM
STDCALL STDCALL

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.8 2002/09/08 10:23:12 chorns Exp $ /* $Id: paint.c,v 1.9 2003/03/18 07:19:17 rcampbell Exp $
* *
* PROJECT: ReactOS user32.dll * PROJECT: ReactOS user32.dll
* FILE: lib/user32/windows/input.c * FILE: lib/user32/windows/input.c
@ -104,7 +104,7 @@ RedrawWindow(
HRGN hrgnUpdate, HRGN hrgnUpdate,
UINT flags) UINT flags)
{ {
return FALSE; return NtUserRedrawWindow(hWnd, lprcUpdate, hrgnUpdate, flags);
} }
WINBOOL WINBOOL
STDCALL STDCALL

View file

@ -1,4 +1,4 @@
/* $Id: window.c,v 1.32 2003/03/16 23:01:08 rcampbell Exp $ /* $Id: window.c,v 1.33 2003/03/18 07:19:17 rcampbell Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -897,15 +897,10 @@ NtUserRealChildWindowFromPoint(DWORD Unknown0,
return 0; return 0;
} }
DWORD STDCALL BOOL STDCALL
NtUserRedrawWindow(DWORD Unknown0, NtUserRedrawWindow(HWND hWnd, CONST RECT *lprcUpdate, HRGN hrgnUpdate, UINT flags)
DWORD Unknown1,
DWORD Unknown2,
DWORD Unknown3)
{ {
UNIMPLEMENTED return PaintRedrawWindow(hWnd, lprcUpdate, hrgnUpdate, flags);
return 0;
} }
UINT STDCALL UINT STDCALL