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
5de0fa12
Commit
5de0fa12
authored
Oct 22, 2000
by
Marcus Meissner
Committed by
Alexandre Julliard
Oct 22, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DirectDrawCreateEx() should already return the interface for the
passed refiid.
parent
c4134c74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
main.c
dlls/ddraw/main.c
+11
-3
No files found.
dlls/ddraw/main.c
View file @
5de0fa12
...
...
@@ -341,9 +341,17 @@ HRESULT WINAPI DirectDrawCreate(
HRESULT
WINAPI
DirectDrawCreateEx
(
LPGUID
lpGUID
,
LPVOID
*
lplpDD
,
REFIID
iid
,
LPUNKNOWN
pUnkOuter
)
{
FIXME
(
":semi stub
\n
"
);
/* I don't know about what functionality is unique to Ex */
return
DirectDrawCreate
(
lpGUID
,(
LPDIRECTDRAW
*
)
lplpDD
,
pUnkOuter
);
LPDIRECTDRAW
ddraw
;
HRESULT
hres
;
FIXME
(
"(%p,%p,%s,%p), might be wrong.
\n
"
,
lpGUID
,
lplpDD
,
debugstr_guid
(
iid
),
pUnkOuter
);
hres
=
DirectDrawCreate
(
lpGUID
,(
LPDIRECTDRAW
*
)
&
ddraw
,
pUnkOuter
);
if
(
!
hres
)
{
hres
=
IDirectDraw_QueryInterface
(
ddraw
,
iid
,
lplpDD
);
IDirectDraw_Release
(
ddraw
);
}
return
hres
;
}
/*******************************************************************************
...
...
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