dmime: Fix IDirectMusicAudioPath::GetObjectInPath() prototype.
Signed-off-by: Eric Pouech <epouech@codeweavers.com>
This commit is contained in:
parent
b2441ad699
commit
1bdf94a409
2 changed files with 3 additions and 3 deletions
|
@ -140,12 +140,12 @@ static ULONG WINAPI IDirectMusicAudioPathImpl_Release (IDirectMusicAudioPath *if
|
|||
}
|
||||
|
||||
static HRESULT WINAPI IDirectMusicAudioPathImpl_GetObjectInPath (IDirectMusicAudioPath *iface, DWORD dwPChannel, DWORD dwStage, DWORD dwBuffer,
|
||||
REFGUID guidObject, WORD dwIndex, REFGUID iidInterface, void** ppObject)
|
||||
REFGUID guidObject, DWORD dwIndex, REFGUID iidInterface, void** ppObject)
|
||||
{
|
||||
struct IDirectMusicAudioPathImpl *This = impl_from_IDirectMusicAudioPath(iface);
|
||||
HRESULT hr;
|
||||
|
||||
FIXME("(%p, %ld, %ld, %ld, %s, %d, %s, %p): stub\n", This, dwPChannel, dwStage, dwBuffer, debugstr_dmguid(guidObject),
|
||||
FIXME("(%p, %ld, %ld, %ld, %s, %ld, %s, %p): stub\n", This, dwPChannel, dwStage, dwBuffer, debugstr_dmguid(guidObject),
|
||||
dwIndex, debugstr_dmguid(iidInterface), ppObject);
|
||||
|
||||
switch (dwStage) {
|
||||
|
|
|
@ -1177,7 +1177,7 @@ DECLARE_INTERFACE_(IDirectMusicAudioPath,IUnknown)
|
|||
STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
||||
STDMETHOD_(ULONG,Release)(THIS) PURE;
|
||||
/*** IDirectMusicAudioPath methods ***/
|
||||
STDMETHOD(GetObjectInPath)(THIS_ DWORD dwPChannel, DWORD dwStage, DWORD dwBuffer, REFGUID guidObject, WORD dwIndex, REFGUID iidInterface, void **ppObject) PURE;
|
||||
STDMETHOD(GetObjectInPath)(THIS_ DWORD dwPChannel, DWORD dwStage, DWORD dwBuffer, REFGUID guidObject, DWORD dwIndex, REFGUID iidInterface, void **ppObject) PURE;
|
||||
STDMETHOD(Activate)(THIS_ BOOL fActivate) PURE;
|
||||
STDMETHOD(SetVolume)(THIS_ LONG lVolume, DWORD dwDuration) PURE;
|
||||
STDMETHOD(ConvertPChannel)(THIS_ DWORD dwPChannelIn, DWORD *pdwPChannelOut) PURE;
|
||||
|
|
Loading…
Add table
Reference in a new issue