UpdateWindow returns a BOOLean.

This commit is contained in:
Dimitrie O. Paun 2002-12-19 04:14:19 +00:00 committed by Alexandre Julliard
parent 96a24ec8ea
commit 221ffc5e9c
2 changed files with 3 additions and 3 deletions

View file

@ -4441,7 +4441,7 @@ BOOL WINAPI UnionRect(LPRECT,const RECT*,const RECT*);
BOOL WINAPI UnregisterClassA(LPCSTR,HINSTANCE);
BOOL WINAPI UnregisterClassW(LPCWSTR,HINSTANCE);
#define UnregisterClass WINELIB_NAME_AW(UnregisterClass)
VOID WINAPI UpdateWindow(HWND);
BOOL WINAPI UpdateWindow(HWND);
UINT WINAPI UserRealizePalette(HDC);
BOOL WINAPI ValidateRect(HWND,const RECT*);
BOOL WINAPI ValidateRgn(HWND,HRGN);

View file

@ -852,9 +852,9 @@ END:
/***********************************************************************
* UpdateWindow (USER32.@)
*/
void WINAPI UpdateWindow( HWND hwnd )
BOOL WINAPI UpdateWindow( HWND hwnd )
{
RedrawWindow( hwnd, NULL, 0, RDW_UPDATENOW | RDW_ALLCHILDREN );
return RedrawWindow( hwnd, NULL, 0, RDW_UPDATENOW | RDW_ALLCHILDREN );
}