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
56e1e6aa
Commit
56e1e6aa
authored
Sep 03, 2013
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Sep 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dplayx: Finish the COM cleanup for IDPLobbySP.
parent
02ce71ed
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lobbysp.c
dlls/dplayx/lobbysp.c
+3
-3
No files found.
dlls/dplayx/lobbysp.c
View file @
56e1e6aa
...
@@ -28,14 +28,14 @@ WINE_DEFAULT_DEBUG_CHANNEL(dplay);
...
@@ -28,14 +28,14 @@ WINE_DEFAULT_DEBUG_CHANNEL(dplay);
typedef
struct
IDPLobbySPImpl
typedef
struct
IDPLobbySPImpl
{
{
const
IDPLobbySPVtbl
*
lpVtbl
;
IDPLobbySP
IDPLobbySP_iface
;
LONG
ref
;
LONG
ref
;
IDirectPlayImpl
*
dplay
;
IDirectPlayImpl
*
dplay
;
}
IDPLobbySPImpl
;
}
IDPLobbySPImpl
;
static
inline
IDPLobbySPImpl
*
impl_from_IDPLobbySP
(
IDPLobbySP
*
iface
)
static
inline
IDPLobbySPImpl
*
impl_from_IDPLobbySP
(
IDPLobbySP
*
iface
)
{
{
return
CONTAINING_RECORD
(
iface
,
IDPLobbySPImpl
,
lpVtbl
);
return
CONTAINING_RECORD
(
iface
,
IDPLobbySPImpl
,
IDPLobbySP_iface
);
}
}
/* Forward declaration of virtual tables */
/* Forward declaration of virtual tables */
...
@@ -56,7 +56,7 @@ HRESULT DPLSP_CreateInterface( REFIID riid, void **ppvObj, IDirectPlayImpl *dp )
...
@@ -56,7 +56,7 @@ HRESULT DPLSP_CreateInterface( REFIID riid, void **ppvObj, IDirectPlayImpl *dp )
if
(
IsEqualGUID
(
&
IID_IDPLobbySP
,
riid
)
)
if
(
IsEqualGUID
(
&
IID_IDPLobbySP
,
riid
)
)
{
{
IDPLobbySPImpl
*
This
=
*
ppvObj
;
IDPLobbySPImpl
*
This
=
*
ppvObj
;
This
->
lpVtbl
=
&
dpLobbySPVT
;
This
->
IDPLobbySP_iface
.
lpVtbl
=
&
dpLobbySPVT
;
This
->
dplay
=
dp
;
This
->
dplay
=
dp
;
}
}
else
else
...
...
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