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
afd14322
Commit
afd14322
authored
Oct 01, 2020
by
Andrew Eikum
Committed by
Alexandre Julliard
Oct 02, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
audioclient.idl: Declare IAudioClient2.
Signed-off-by:
Andrew Eikum
<
aeikum@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6d3d0884
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
audioclient.idl
include/audioclient.idl
+40
-0
No files found.
include/audioclient.idl
View file @
afd14322
...
...
@@ -111,6 +111,46 @@ interface IAudioClient : IUnknown
)
;
}
typedef
enum
_AUDCLNT_STREAMOPTIONS
{
AUDCLNT_STREAMOPTIONS_NONE
=
0
,
AUDCLNT_STREAMOPTIONS_RAW
=
1
,
AUDCLNT_STREAMOPTIONS_MATCH_FORMAT
=
2
,
}
AUDCLNT_STREAMOPTIONS
;
typedef
struct
_AudioClientProperties
{
UINT32
cbSize
;
BOOL
bIsOffload
;
AUDIO_STREAM_CATEGORY
eCategory
;
AUDCLNT_STREAMOPTIONS
Options
;
}
AudioClientProperties
;
[
local
,
pointer_default
(
unique
),
uuid
(
726778
cd
-
f60a
-
4
eda
-
82
de
-
e47610cd78aa
),
object
,
]
interface
IAudioClient2
:
IAudioClient
{
HRESULT
IsOffloadCapable
(
AUDIO_STREAM_CATEGORY
category
,
[
out
]
BOOL
*
offload_capable
)
;
HRESULT
SetClientProperties
(
[
in
]
const
AudioClientProperties
*
prop
)
;
HRESULT
GetBufferSizeLimits
(
[
in
]
const
WAVEFORMATEX
*
format
,
BOOL
event_driven
,
[
out
]
REFERENCE_TIME
*
min_duration
,
[
out
]
REFERENCE_TIME
*
max_duration
)
;
}
[
local
,
pointer_default
(
unique
),
...
...
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