Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
221ffc5e
Commit
221ffc5e
authored
Dec 19, 2002
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Dec 19, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UpdateWindow returns a BOOLean.
parent
96a24ec8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
winuser.h
include/winuser.h
+1
-1
painting.c
windows/painting.c
+2
-2
No files found.
include/winuser.h
View file @
221ffc5e
...
@@ -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
);
...
...
windows/painting.c
View file @
221ffc5e
...
@@ -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
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment