Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
5e6d1738
Commit
5e6d1738
authored
Jul 11, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Jul 11, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineoss.drv: Make the AudioSessionManager methods static.
parent
84fca001
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
mmdevdrv.c
dlls/wineoss.drv/mmdevdrv.c
+10
-10
No files found.
dlls/wineoss.drv/mmdevdrv.c
View file @
5e6d1738
...
@@ -2755,7 +2755,7 @@ static const IChannelAudioVolumeVtbl ChannelAudioVolume_Vtbl =
...
@@ -2755,7 +2755,7 @@ static const IChannelAudioVolumeVtbl ChannelAudioVolume_Vtbl =
ChannelAudioVolume_GetAllVolumes
ChannelAudioVolume_GetAllVolumes
};
};
HRESULT
WINAPI
AudioSessionManager_QueryInterface
(
IAudioSessionManager2
*
iface
,
static
HRESULT
WINAPI
AudioSessionManager_QueryInterface
(
IAudioSessionManager2
*
iface
,
REFIID
riid
,
void
**
ppv
)
REFIID
riid
,
void
**
ppv
)
{
{
TRACE
(
"(%p)->(%s, %p)
\n
"
,
iface
,
debugstr_guid
(
riid
),
ppv
);
TRACE
(
"(%p)->(%s, %p)
\n
"
,
iface
,
debugstr_guid
(
riid
),
ppv
);
...
@@ -2777,7 +2777,7 @@ HRESULT WINAPI AudioSessionManager_QueryInterface(IAudioSessionManager2 *iface,
...
@@ -2777,7 +2777,7 @@ HRESULT WINAPI AudioSessionManager_QueryInterface(IAudioSessionManager2 *iface,
return
E_NOINTERFACE
;
return
E_NOINTERFACE
;
}
}
ULONG
WINAPI
AudioSessionManager_AddRef
(
IAudioSessionManager2
*
iface
)
static
ULONG
WINAPI
AudioSessionManager_AddRef
(
IAudioSessionManager2
*
iface
)
{
{
SessionMgr
*
This
=
impl_from_IAudioSessionManager2
(
iface
);
SessionMgr
*
This
=
impl_from_IAudioSessionManager2
(
iface
);
ULONG
ref
;
ULONG
ref
;
...
@@ -2786,7 +2786,7 @@ ULONG WINAPI AudioSessionManager_AddRef(IAudioSessionManager2 *iface)
...
@@ -2786,7 +2786,7 @@ ULONG WINAPI AudioSessionManager_AddRef(IAudioSessionManager2 *iface)
return
ref
;
return
ref
;
}
}
ULONG
WINAPI
AudioSessionManager_Release
(
IAudioSessionManager2
*
iface
)
static
ULONG
WINAPI
AudioSessionManager_Release
(
IAudioSessionManager2
*
iface
)
{
{
SessionMgr
*
This
=
impl_from_IAudioSessionManager2
(
iface
);
SessionMgr
*
This
=
impl_from_IAudioSessionManager2
(
iface
);
ULONG
ref
;
ULONG
ref
;
...
@@ -2797,7 +2797,7 @@ ULONG WINAPI AudioSessionManager_Release(IAudioSessionManager2 *iface)
...
@@ -2797,7 +2797,7 @@ ULONG WINAPI AudioSessionManager_Release(IAudioSessionManager2 *iface)
return
ref
;
return
ref
;
}
}
HRESULT
WINAPI
AudioSessionManager_GetAudioSessionControl
(
static
HRESULT
WINAPI
AudioSessionManager_GetAudioSessionControl
(
IAudioSessionManager2
*
iface
,
const
GUID
*
session_guid
,
DWORD
flags
,
IAudioSessionManager2
*
iface
,
const
GUID
*
session_guid
,
DWORD
flags
,
IAudioSessionControl
**
out
)
IAudioSessionControl
**
out
)
{
{
...
@@ -2824,7 +2824,7 @@ HRESULT WINAPI AudioSessionManager_GetAudioSessionControl(
...
@@ -2824,7 +2824,7 @@ HRESULT WINAPI AudioSessionManager_GetAudioSessionControl(
return
S_OK
;
return
S_OK
;
}
}
HRESULT
WINAPI
AudioSessionManager_GetSimpleAudioVolume
(
static
HRESULT
WINAPI
AudioSessionManager_GetSimpleAudioVolume
(
IAudioSessionManager2
*
iface
,
const
GUID
*
session_guid
,
DWORD
flags
,
IAudioSessionManager2
*
iface
,
const
GUID
*
session_guid
,
DWORD
flags
,
ISimpleAudioVolume
**
out
)
ISimpleAudioVolume
**
out
)
{
{
...
@@ -2851,7 +2851,7 @@ HRESULT WINAPI AudioSessionManager_GetSimpleAudioVolume(
...
@@ -2851,7 +2851,7 @@ HRESULT WINAPI AudioSessionManager_GetSimpleAudioVolume(
return
S_OK
;
return
S_OK
;
}
}
HRESULT
WINAPI
AudioSessionManager_GetSessionEnumerator
(
static
HRESULT
WINAPI
AudioSessionManager_GetSessionEnumerator
(
IAudioSessionManager2
*
iface
,
IAudioSessionEnumerator
**
out
)
IAudioSessionManager2
*
iface
,
IAudioSessionEnumerator
**
out
)
{
{
SessionMgr
*
This
=
impl_from_IAudioSessionManager2
(
iface
);
SessionMgr
*
This
=
impl_from_IAudioSessionManager2
(
iface
);
...
@@ -2859,7 +2859,7 @@ HRESULT WINAPI AudioSessionManager_GetSessionEnumerator(
...
@@ -2859,7 +2859,7 @@ HRESULT WINAPI AudioSessionManager_GetSessionEnumerator(
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
AudioSessionManager_RegisterSessionNotification
(
static
HRESULT
WINAPI
AudioSessionManager_RegisterSessionNotification
(
IAudioSessionManager2
*
iface
,
IAudioSessionNotification
*
notification
)
IAudioSessionManager2
*
iface
,
IAudioSessionNotification
*
notification
)
{
{
SessionMgr
*
This
=
impl_from_IAudioSessionManager2
(
iface
);
SessionMgr
*
This
=
impl_from_IAudioSessionManager2
(
iface
);
...
@@ -2867,7 +2867,7 @@ HRESULT WINAPI AudioSessionManager_RegisterSessionNotification(
...
@@ -2867,7 +2867,7 @@ HRESULT WINAPI AudioSessionManager_RegisterSessionNotification(
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
AudioSessionManager_UnregisterSessionNotification
(
static
HRESULT
WINAPI
AudioSessionManager_UnregisterSessionNotification
(
IAudioSessionManager2
*
iface
,
IAudioSessionNotification
*
notification
)
IAudioSessionManager2
*
iface
,
IAudioSessionNotification
*
notification
)
{
{
SessionMgr
*
This
=
impl_from_IAudioSessionManager2
(
iface
);
SessionMgr
*
This
=
impl_from_IAudioSessionManager2
(
iface
);
...
@@ -2875,7 +2875,7 @@ HRESULT WINAPI AudioSessionManager_UnregisterSessionNotification(
...
@@ -2875,7 +2875,7 @@ HRESULT WINAPI AudioSessionManager_UnregisterSessionNotification(
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
AudioSessionManager_RegisterDuckNotification
(
static
HRESULT
WINAPI
AudioSessionManager_RegisterDuckNotification
(
IAudioSessionManager2
*
iface
,
const
WCHAR
*
session_id
,
IAudioSessionManager2
*
iface
,
const
WCHAR
*
session_id
,
IAudioVolumeDuckNotification
*
notification
)
IAudioVolumeDuckNotification
*
notification
)
{
{
...
@@ -2884,7 +2884,7 @@ HRESULT WINAPI AudioSessionManager_RegisterDuckNotification(
...
@@ -2884,7 +2884,7 @@ HRESULT WINAPI AudioSessionManager_RegisterDuckNotification(
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
AudioSessionManager_UnregisterDuckNotification
(
static
HRESULT
WINAPI
AudioSessionManager_UnregisterDuckNotification
(
IAudioSessionManager2
*
iface
,
IAudioSessionManager2
*
iface
,
IAudioVolumeDuckNotification
*
notification
)
IAudioVolumeDuckNotification
*
notification
)
{
{
...
...
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