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
176c8eb3
Commit
176c8eb3
authored
Dec 05, 2008
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 05, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Remove two superfluous casts.
parent
fa1d0498
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
main.c
dlls/ddraw/main.c
+1
-1
ddrawmodes.c
dlls/ddraw/tests/ddrawmodes.c
+1
-1
No files found.
dlls/ddraw/main.c
View file @
176c8eb3
...
...
@@ -267,7 +267,7 @@ DDRAW_Create(const GUID *guid,
This
->
wnd_class
.
hInstance
=
GetModuleHandleA
(
0
);
This
->
wnd_class
.
hIcon
=
0
;
This
->
wnd_class
.
hCursor
=
0
;
This
->
wnd_class
.
hbrBackground
=
(
HBRUSH
)
GetStockObject
(
BLACK_BRUSH
);
This
->
wnd_class
.
hbrBackground
=
GetStockObject
(
BLACK_BRUSH
);
This
->
wnd_class
.
lpszMenuName
=
NULL
;
This
->
wnd_class
.
lpszClassName
=
This
->
classname
;
if
(
!
RegisterClassA
(
&
This
->
wnd_class
))
...
...
dlls/ddraw/tests/ddrawmodes.c
View file @
176c8eb3
...
...
@@ -47,7 +47,7 @@ static void createwindow(void)
wc
.
hInstance
=
GetModuleHandleA
(
0
);
wc
.
hIcon
=
LoadIconA
(
wc
.
hInstance
,
IDI_APPLICATION
);
wc
.
hCursor
=
LoadCursorA
(
NULL
,
IDC_ARROW
);
wc
.
hbrBackground
=
(
HBRUSH
)
GetStockObject
(
BLACK_BRUSH
);
wc
.
hbrBackground
=
GetStockObject
(
BLACK_BRUSH
);
wc
.
lpszMenuName
=
NULL
;
wc
.
lpszClassName
=
"TestWindowClass"
;
if
(
!
RegisterClassA
(
&
wc
))
...
...
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