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
feb96511
Commit
feb96511
authored
Sep 18, 2011
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 19, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Get rid of IDirectDraw3.
parent
bee33400
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
3 deletions
+0
-3
ddraw.c
dlls/ddraw/ddraw.c
+0
-0
ddraw_private.h
dlls/ddraw/ddraw_private.h
+0
-1
main.c
dlls/ddraw/main.c
+0
-2
No files found.
dlls/ddraw/ddraw.c
View file @
feb96511
This diff is collapsed.
Click to expand it.
dlls/ddraw/ddraw_private.h
View file @
feb96511
...
...
@@ -71,7 +71,6 @@ struct IDirectDrawImpl
/* Interfaces */
IDirectDraw7
IDirectDraw7_iface
;
IDirectDraw4
IDirectDraw4_iface
;
IDirectDraw3
IDirectDraw3_iface
;
IDirectDraw2
IDirectDraw2_iface
;
IDirectDraw
IDirectDraw_iface
;
IDirect3D7
IDirect3D7_iface
;
...
...
dlls/ddraw/main.c
View file @
feb96511
...
...
@@ -933,7 +933,6 @@ DllMain(HINSTANCE hInstDLL,
/* Add references to each interface to avoid freeing them unexpectedly */
IDirectDraw_AddRef
(
&
ddraw
->
IDirectDraw_iface
);
IDirectDraw2_AddRef
(
&
ddraw
->
IDirectDraw2_iface
);
IDirectDraw3_AddRef
(
&
ddraw
->
IDirectDraw3_iface
);
IDirectDraw4_AddRef
(
&
ddraw
->
IDirectDraw4_iface
);
IDirectDraw7_AddRef
(
&
ddraw
->
IDirectDraw7_iface
);
...
...
@@ -968,7 +967,6 @@ DllMain(HINSTANCE hInstDLL,
*/
while
(
IDirectDraw_Release
(
&
ddraw
->
IDirectDraw_iface
));
while
(
IDirectDraw2_Release
(
&
ddraw
->
IDirectDraw2_iface
));
while
(
IDirectDraw3_Release
(
&
ddraw
->
IDirectDraw3_iface
));
while
(
IDirectDraw4_Release
(
&
ddraw
->
IDirectDraw4_iface
));
while
(
IDirectDraw7_Release
(
&
ddraw
->
IDirectDraw7_iface
));
}
...
...
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