Commit 221ffc5e authored by Dimitrie O. Paun's avatar Dimitrie O. Paun Committed by Alexandre Julliard

UpdateWindow returns a BOOLean.

parent 96a24ec8
...@@ -4441,7 +4441,7 @@ BOOL WINAPI UnionRect(LPRECT,const RECT*,const RECT*); ...@@ -4441,7 +4441,7 @@ BOOL WINAPI UnionRect(LPRECT,const RECT*,const RECT*);
BOOL WINAPI UnregisterClassA(LPCSTR,HINSTANCE); BOOL WINAPI UnregisterClassA(LPCSTR,HINSTANCE);
BOOL WINAPI UnregisterClassW(LPCWSTR,HINSTANCE); BOOL WINAPI UnregisterClassW(LPCWSTR,HINSTANCE);
#define UnregisterClass WINELIB_NAME_AW(UnregisterClass) #define UnregisterClass WINELIB_NAME_AW(UnregisterClass)
VOID WINAPI UpdateWindow(HWND); BOOL WINAPI UpdateWindow(HWND);
UINT WINAPI UserRealizePalette(HDC); UINT WINAPI UserRealizePalette(HDC);
BOOL WINAPI ValidateRect(HWND,const RECT*); BOOL WINAPI ValidateRect(HWND,const RECT*);
BOOL WINAPI ValidateRgn(HWND,HRGN); BOOL WINAPI ValidateRgn(HWND,HRGN);
......
...@@ -852,9 +852,9 @@ END: ...@@ -852,9 +852,9 @@ END:
/*********************************************************************** /***********************************************************************
* UpdateWindow (USER32.@) * 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 );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment