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
75b31e3e
Commit
75b31e3e
authored
Oct 02, 2002
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Oct 02, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Validate{Rect,Rgn} prototypes.
parent
16f3c788
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
winuser.h
include/winuser.h
+2
-2
painting.c
windows/painting.c
+4
-4
No files found.
include/winuser.h
View file @
75b31e3e
...
...
@@ -4384,8 +4384,8 @@ BOOL WINAPI UnregisterClassW(LPCWSTR,HINSTANCE);
#define UnregisterClass WINELIB_NAME_AW(UnregisterClass)
VOID
WINAPI
UpdateWindow
(
HWND
);
UINT
WINAPI
UserRealizePalette
(
HDC
);
VOID
WINAPI
ValidateRect
(
HWND
,
const
RECT
*
);
VOID
WINAPI
ValidateRgn
(
HWND
,
HRGN
);
BOOL
WINAPI
ValidateRect
(
HWND
,
const
RECT
*
);
BOOL
WINAPI
ValidateRgn
(
HWND
,
HRGN
);
WORD
WINAPI
VkKeyScanA
(
CHAR
);
WORD
WINAPI
VkKeyScanW
(
WCHAR
);
#define VkKeyScan WINELIB_NAME_AW(VkKeyScan)
...
...
windows/painting.c
View file @
75b31e3e
...
...
@@ -876,18 +876,18 @@ BOOL WINAPI InvalidateRect( HWND hwnd, const RECT *rect, BOOL erase )
/***********************************************************************
* ValidateRgn (USER32.@)
*/
void
WINAPI
ValidateRgn
(
HWND
hwnd
,
HRGN
hrgn
)
BOOL
WINAPI
ValidateRgn
(
HWND
hwnd
,
HRGN
hrgn
)
{
RedrawWindow
(
hwnd
,
NULL
,
hrgn
,
RDW_VALIDATE
|
RDW_NOCHILDREN
);
return
RedrawWindow
(
hwnd
,
NULL
,
hrgn
,
RDW_VALIDATE
|
RDW_NOCHILDREN
);
}
/***********************************************************************
* ValidateRect (USER32.@)
*/
void
WINAPI
ValidateRect
(
HWND
hwnd
,
const
RECT
*
rect
)
BOOL
WINAPI
ValidateRect
(
HWND
hwnd
,
const
RECT
*
rect
)
{
RedrawWindow
(
hwnd
,
rect
,
0
,
RDW_VALIDATE
|
RDW_NOCHILDREN
);
return
RedrawWindow
(
hwnd
,
rect
,
0
,
RDW_VALIDATE
|
RDW_NOCHILDREN
);
}
...
...
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