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
431d1943
Commit
431d1943
authored
Oct 14, 2023
by
Esme Povirk
Committed by
Alexandre Julliard
Oct 16, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Reduce size demand in test_hvredraw.
parent
cc75dbd3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
msg.c
dlls/user32/tests/msg.c
+8
-8
No files found.
dlls/user32/tests/msg.c
View file @
431d1943
...
...
@@ -9598,19 +9598,19 @@ static void subtest_hvredraw(HWND hparent, UINT class_style, DWORD style)
static
const
struct
movesize_test
{
int
dx
,
dy
,
dw
,
dh
;
}
movesize_tests
[]
=
{
{
0
,
0
,
0
,
50
},
{
0
,
0
,
50
,
0
},
{
0
,
0
,
50
,
50
},
{
0
,
0
,
-
50
,
-
50
},
{
-
5
0
,
-
50
,
0
,
50
},
{
-
5
0
,
-
50
,
50
,
0
},
{
-
5
0
,
-
50
,
50
,
50
},
{
0
,
0
,
0
,
5
},
{
0
,
0
,
5
,
0
},
{
0
,
0
,
5
,
5
},
{
0
,
0
,
-
5
,
-
5
},
{
-
5
,
-
5
,
0
,
5
},
{
-
5
,
-
5
,
5
,
0
},
{
-
5
,
-
5
,
5
,
5
},
};
HRGN
hrgn_old_vis
=
CreateRectRgn
(
0
,
0
,
0
,
0
);
HRGN
hrgn_new_vis
=
CreateRectRgn
(
0
,
0
,
0
,
0
);
HRGN
hrgn_expect
=
CreateRectRgn
(
0
,
0
,
0
,
0
);
HRGN
hrgn_actual
=
CreateRectRgn
(
0
,
0
,
0
,
0
);
const
int
x0
=
100
,
y0
=
100
,
w0
=
200
,
h0
=
20
0
;
const
int
x0
=
100
,
y0
=
100
,
w0
=
150
,
h0
=
15
0
;
size_t
i
;
HWND
hwnd
;
WNDCLASSA
cls
=
{
...
...
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