dplayx: Use consistent naming for the IDPLobbySP members.

This commit is contained in:
Michael Stefaniuc 2013-09-03 23:17:09 +02:00 committed by Alexandre Julliard
parent 25bca2ede4
commit a4589d5673
1 changed files with 7 additions and 18 deletions

View File

@ -159,12 +159,8 @@ static BOOL DPLSP_DestroyDPLobbySP( LPVOID lpSP )
return TRUE; return TRUE;
} }
static static HRESULT WINAPI IDPLobbySPImpl_QueryInterface( IDPLobbySP *iface, REFIID riid,
HRESULT WINAPI DPLSP_QueryInterface void **ppvObj )
( LPDPLOBBYSP iface,
REFIID riid,
LPVOID* ppvObj
)
{ {
IDPLobbySPImpl *This = (IDPLobbySPImpl *)iface; IDPLobbySPImpl *This = (IDPLobbySPImpl *)iface;
TRACE("(%p)->(%s,%p)\n", This, debugstr_guid( riid ), ppvObj ); TRACE("(%p)->(%s,%p)\n", This, debugstr_guid( riid ), ppvObj );
@ -199,9 +195,7 @@ HRESULT WINAPI DPLSP_QueryInterface
return S_OK; return S_OK;
} }
static static ULONG WINAPI IDPLobbySPImpl_AddRef( IDPLobbySP *iface )
ULONG WINAPI DPLSP_AddRef
( LPDPLOBBYSP iface )
{ {
ULONG ulInterfaceRefCount, ulObjRefCount; ULONG ulInterfaceRefCount, ulObjRefCount;
IDPLobbySPImpl *This = (IDPLobbySPImpl *)iface; IDPLobbySPImpl *This = (IDPLobbySPImpl *)iface;
@ -215,9 +209,7 @@ ULONG WINAPI DPLSP_AddRef
return ulObjRefCount; return ulObjRefCount;
} }
static static ULONG WINAPI IDPLobbySPImpl_Release( IDPLobbySP *iface )
ULONG WINAPI DPLSP_Release
( LPDPLOBBYSP iface )
{ {
ULONG ulInterfaceRefCount, ulObjRefCount; ULONG ulInterfaceRefCount, ulObjRefCount;
IDPLobbySPImpl *This = (IDPLobbySPImpl *)iface; IDPLobbySPImpl *This = (IDPLobbySPImpl *)iface;
@ -422,11 +414,9 @@ HRESULT WINAPI IDPLobbySPImpl_StartSession
static const IDPLobbySPVtbl dpLobbySPVT = static const IDPLobbySPVtbl dpLobbySPVT =
{ {
IDPLobbySPImpl_QueryInterface,
DPLSP_QueryInterface, IDPLobbySPImpl_AddRef,
DPLSP_AddRef, IDPLobbySPImpl_Release,
DPLSP_Release,
IDPLobbySPImpl_AddGroupToGroup, IDPLobbySPImpl_AddGroupToGroup,
IDPLobbySPImpl_AddPlayerToGroup, IDPLobbySPImpl_AddPlayerToGroup,
IDPLobbySPImpl_CreateGroup, IDPLobbySPImpl_CreateGroup,
@ -443,5 +433,4 @@ static const IDPLobbySPVtbl dpLobbySPVT =
IDPLobbySPImpl_SetSessionDesc, IDPLobbySPImpl_SetSessionDesc,
IDPLobbySPImpl_SetSPDataPointer, IDPLobbySPImpl_SetSPDataPointer,
IDPLobbySPImpl_StartSession IDPLobbySPImpl_StartSession
}; };