dmusic: Remove unneeded casts.
This commit is contained in:
parent
9e55f92b29
commit
8a4db52f2a
|
@ -118,7 +118,7 @@ static HRESULT WINAPI IDirectMusicCollectionImpl_IDirectMusicCollection_GetInstr
|
|||
tmpEntry = LIST_ENTRY(listEntry, DMUS_PRIVATE_INSTRUMENTENTRY, entry);
|
||||
IDirectMusicInstrument_GetPatch (tmpEntry->pInstrument, &dwInstPatch);
|
||||
if (dwPatch == dwInstPatch) {
|
||||
*ppInstrument = (LPDIRECTMUSICINSTRUMENT)tmpEntry->pInstrument;
|
||||
*ppInstrument = tmpEntry->pInstrument;
|
||||
IDirectMusicInstrument_AddRef (tmpEntry->pInstrument);
|
||||
IDirectMusicInstrumentImpl_Custom_Load (tmpEntry->pInstrument, This->pStm); /* load instrument before returning it */
|
||||
TRACE(": returning instrument %p\n", *ppInstrument);
|
||||
|
|
|
@ -134,7 +134,7 @@ static HRESULT WINAPI IDirectMusic8Impl_CreatePort (LPDIRECTMUSIC8 iface, REFCLS
|
|||
if (!This->ppPorts) This->ppPorts = HeapAlloc(GetProcessHeap(), 0, sizeof(LPDIRECTMUSICPORT) * This->nrofports);
|
||||
else This->ppPorts = HeapReAlloc(GetProcessHeap(), 0, This->ppPorts, sizeof(LPDIRECTMUSICPORT) * This->nrofports);
|
||||
This->ppPorts[This->nrofports - 1] = pNewPort;
|
||||
*ppPort = (LPDIRECTMUSICPORT) pNewPort;
|
||||
*ppPort = pNewPort;
|
||||
return S_OK;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -54,7 +54,7 @@ static ULONG WINAPI DirectMusicCF_Release(LPCLASSFACTORY iface) {
|
|||
|
||||
static HRESULT WINAPI DirectMusicCF_CreateInstance(LPCLASSFACTORY iface, LPUNKNOWN pOuter, REFIID riid, LPVOID *ppobj) {
|
||||
TRACE ("(%p, %s, %p)\n", pOuter, debugstr_dmguid(riid), ppobj);
|
||||
return DMUSIC_CreateDirectMusicImpl (riid, (LPVOID*) ppobj, pOuter);
|
||||
return DMUSIC_CreateDirectMusicImpl (riid, ppobj, pOuter);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DirectMusicCF_LockServer(LPCLASSFACTORY iface,BOOL dolock) {
|
||||
|
|
Loading…
Reference in New Issue