mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
UpdateWindow returns a BOOLean.
This commit is contained in:
parent
96a24ec8ea
commit
221ffc5e9c
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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 );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue