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
b669664c
Commit
b669664c
authored
Apr 09, 2013
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Apr 10, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dplayx: Have the decency to support IUnknown in DirectPlayLobby.
parent
dffc8fc5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dplobby.c
dlls/dplayx/dplobby.c
+2
-2
No files found.
dlls/dplayx/dplobby.c
View file @
b669664c
...
...
@@ -196,7 +196,7 @@ HRESULT DPL_CreateInterface
if
(
!
This
)
return
DPERR_OUTOFMEMORY
;
if
(
IsEqualGUID
(
&
IID_IDirectPlayLobby
,
riid
)
)
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
)
||
IsEqualGUID
(
&
IID_IDirectPlayLobby
,
riid
)
)
This
->
lpVtbl
=
&
directPlayLobbyWVT
;
else
if
(
IsEqualGUID
(
&
IID_IDirectPlayLobbyA
,
riid
)
)
This
->
lpVtbl
=
&
directPlayLobbyAVT
;
...
...
@@ -255,7 +255,7 @@ static HRESULT WINAPI DPL_QueryInterface
CopyMemory
(
*
ppvObj
,
This
,
sizeof
(
*
This
)
);
(
*
(
IDirectPlayLobbyAImpl
**
)
ppvObj
)
->
ulInterfaceRef
=
0
;
if
(
IsEqualGUID
(
&
IID_IDirectPlayLobby
,
riid
)
)
if
(
IsEqualGUID
(
&
IID_I
Unknown
,
riid
)
||
IsEqualGUID
(
&
IID_I
DirectPlayLobby
,
riid
)
)
{
IDirectPlayLobbyWImpl
*
This
=
*
ppvObj
;
This
->
lpVtbl
=
&
directPlayLobbyWVT
;
...
...
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