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
bc3484bc
Commit
bc3484bc
authored
Nov 20, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Nov 20, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Don't crash on Win95.
parent
4f14b030
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
win.c
dlls/user32/tests/win.c
+11
-3
No files found.
dlls/user32/tests/win.c
View file @
bc3484bc
...
@@ -3361,9 +3361,17 @@ static void test_params(void)
...
@@ -3361,9 +3361,17 @@ static void test_params(void)
INT
rc
;
INT
rc
;
/* Just a param check */
/* Just a param check */
SetLastError
(
0xdeadbeef
);
if
(
pGetMonitorInfoA
)
rc
=
GetWindowText
(
hwndMain2
,
NULL
,
1024
);
{
ok
(
rc
==
0
,
"GetWindowText: rc=%d err=%d
\n
"
,
rc
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
rc
=
GetWindowText
(
hwndMain2
,
NULL
,
1024
);
ok
(
rc
==
0
,
"GetWindowText: rc=%d err=%d
\n
"
,
rc
,
GetLastError
());
}
else
{
/* Skips actually on Win95 and NT4 */
win_skip
(
"Test would crash on Win95
\n
"
);
}
SetLastError
(
0xdeadbeef
);
SetLastError
(
0xdeadbeef
);
hwnd
=
CreateWindow
(
"LISTBOX"
,
"TestList"
,
hwnd
=
CreateWindow
(
"LISTBOX"
,
"TestList"
,
...
...
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