Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
a5e995ae
Commit
a5e995ae
authored
Oct 04, 2002
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed printf formats for -DSTRICT handles.
parent
613ead7f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
class.c
dlls/user/tests/class.c
+3
-3
win.c
dlls/user/tests/win.c
+0
-0
No files found.
dlls/user/tests/class.c
View file @
a5e995ae
...
...
@@ -156,11 +156,11 @@ BOOL ClassTest(HINSTANCE hInstance, BOOL global)
ok
(
wc
.
cbWndExtra
==
cls
.
cbWndExtra
,
"cbWndExtra did not match %x!=%x"
,
wc
.
cbWndExtra
,
cls
.
cbWndExtra
);
ok
(
wc
.
hbrBackground
==
cls
.
hbrBackground
,
"hbrBackground did not match %
x!=%x
"
,
wc
.
hbrBackground
,
cls
.
hbrBackground
);
"hbrBackground did not match %
p!=%p
"
,
wc
.
hbrBackground
,
cls
.
hbrBackground
);
ok
(
wc
.
hCursor
==
cls
.
hCursor
,
"hCursor did not match %
x!=%x
"
,
wc
.
hCursor
,
cls
.
hCursor
);
"hCursor did not match %
p!=%p
"
,
wc
.
hCursor
,
cls
.
hCursor
);
ok
(
!
wc
.
hInstance
,
"hInstance not zero for global class %
x
"
,
wc
.
hInstance
);
"hInstance not zero for global class %
p
"
,
wc
.
hInstance
);
}
else
ok
(
FALSE
,
"GetClassInfo (0) failed for global class!"
);
...
...
dlls/user/tests/win.c
View file @
a5e995ae
This diff is collapsed.
Click to expand it.
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