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
a4589d56
Commit
a4589d56
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: Use consistent naming for the IDPLobbySP members.
parent
25bca2ed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
18 deletions
+7
-18
lobbysp.c
dlls/dplayx/lobbysp.c
+7
-18
No files found.
dlls/dplayx/lobbysp.c
View file @
a4589d56
...
...
@@ -159,12 +159,8 @@ static BOOL DPLSP_DestroyDPLobbySP( LPVOID lpSP )
return
TRUE
;
}
static
HRESULT
WINAPI
DPLSP_QueryInterface
(
LPDPLOBBYSP
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
static
HRESULT
WINAPI
IDPLobbySPImpl_QueryInterface
(
IDPLobbySP
*
iface
,
REFIID
riid
,
void
**
ppvObj
)
{
IDPLobbySPImpl
*
This
=
(
IDPLobbySPImpl
*
)
iface
;
TRACE
(
"(%p)->(%s,%p)
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObj
);
...
...
@@ -199,9 +195,7 @@ HRESULT WINAPI DPLSP_QueryInterface
return
S_OK
;
}
static
ULONG
WINAPI
DPLSP_AddRef
(
LPDPLOBBYSP
iface
)
static
ULONG
WINAPI
IDPLobbySPImpl_AddRef
(
IDPLobbySP
*
iface
)
{
ULONG
ulInterfaceRefCount
,
ulObjRefCount
;
IDPLobbySPImpl
*
This
=
(
IDPLobbySPImpl
*
)
iface
;
...
...
@@ -215,9 +209,7 @@ ULONG WINAPI DPLSP_AddRef
return
ulObjRefCount
;
}
static
ULONG
WINAPI
DPLSP_Release
(
LPDPLOBBYSP
iface
)
static
ULONG
WINAPI
IDPLobbySPImpl_Release
(
IDPLobbySP
*
iface
)
{
ULONG
ulInterfaceRefCount
,
ulObjRefCount
;
IDPLobbySPImpl
*
This
=
(
IDPLobbySPImpl
*
)
iface
;
...
...
@@ -422,11 +414,9 @@ HRESULT WINAPI IDPLobbySPImpl_StartSession
static
const
IDPLobbySPVtbl
dpLobbySPVT
=
{
DPLSP_QueryInterface
,
DPLSP_AddRef
,
DPLSP_Release
,
IDPLobbySPImpl_QueryInterface
,
IDPLobbySPImpl_AddRef
,
IDPLobbySPImpl_Release
,
IDPLobbySPImpl_AddGroupToGroup
,
IDPLobbySPImpl_AddPlayerToGroup
,
IDPLobbySPImpl_CreateGroup
,
...
...
@@ -443,5 +433,4 @@ static const IDPLobbySPVtbl dpLobbySPVT =
IDPLobbySPImpl_SetSessionDesc
,
IDPLobbySPImpl_SetSPDataPointer
,
IDPLobbySPImpl_StartSession
};
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