audiopolicy.idl: Fixed SetGroupingParam declaration.
This commit is contained in:
parent
5d6f29818f
commit
dbba09ca29
|
@ -2427,7 +2427,7 @@ static HRESULT WINAPI AudioSessionControl_GetGroupingParam(
|
|||
}
|
||||
|
||||
static HRESULT WINAPI AudioSessionControl_SetGroupingParam(
|
||||
IAudioSessionControl2 *iface, GUID *group, const GUID *session)
|
||||
IAudioSessionControl2 *iface, const GUID *group, const GUID *session)
|
||||
{
|
||||
AudioSessionWrapper *This = impl_from_IAudioSessionControl2(iface);
|
||||
|
||||
|
|
|
@ -2191,7 +2191,7 @@ static HRESULT WINAPI AudioSessionControl_GetGroupingParam(
|
|||
}
|
||||
|
||||
static HRESULT WINAPI AudioSessionControl_SetGroupingParam(
|
||||
IAudioSessionControl2 *iface, GUID *group, const GUID *session)
|
||||
IAudioSessionControl2 *iface, const GUID *group, const GUID *session)
|
||||
{
|
||||
AudioSessionWrapper *This = impl_from_IAudioSessionControl2(iface);
|
||||
|
||||
|
|
|
@ -2120,7 +2120,7 @@ static HRESULT WINAPI AudioSessionControl_GetGroupingParam(
|
|||
}
|
||||
|
||||
static HRESULT WINAPI AudioSessionControl_SetGroupingParam(
|
||||
IAudioSessionControl2 *iface, GUID *group, const GUID *session)
|
||||
IAudioSessionControl2 *iface, const GUID *group, const GUID *session)
|
||||
{
|
||||
AudioSessionWrapper *This = impl_from_IAudioSessionControl2(iface);
|
||||
|
||||
|
|
|
@ -115,7 +115,7 @@ interface IAudioSessionControl : IUnknown
|
|||
[out] GUID *pRetVal
|
||||
);
|
||||
HRESULT SetGroupingParam(
|
||||
[in] GUID *Override,
|
||||
[in] LPCGUID Override,
|
||||
[unique,in] LPCGUID EventContext
|
||||
);
|
||||
HRESULT RegisterAudioSessionNotification(
|
||||
|
|
Loading…
Reference in New Issue