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
9ae771ba
Commit
9ae771ba
authored
Sep 05, 2023
by
Biswapriyo Nath
Committed by
Alexandre Julliard
Sep 05, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add AudioEffectsManager runtimeclass in windows.media.effects.idl.
parent
d53e989b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
0 deletions
+50
-0
windows.media.effects.idl
include/windows.media.effects.idl
+50
-0
No files found.
include/windows.media.effects.idl
View file @
9ae771ba
...
...
@@ -22,6 +22,9 @@
import
"inspectable.idl"
;
import
"windows.foundation.idl"
;
import
"windows.media.idl"
;
import
"windows.media.capture.idl"
;
import
"windows.media.render.idl"
;
import
"windows.storage.streams.idl"
;
namespace
Windows
.
Media.Effects
{
...
...
@@ -29,11 +32,13 @@ namespace Windows.Media.Effects {
interface
IAudioCaptureEffectsManager
;
interface
IAudioEffect
;
interface
IAudioEffectsManagerStatics
;
interface
IAudioRenderEffectsManager
;
interface
IAudioRenderEffectsManager2
;
runtimeclass
AudioCaptureEffectsManager
;
runtimeclass
AudioEffect
;
runtimeclass
AudioEffectsManager
;
runtimeclass
AudioRenderEffectsManager
;
declare
{
...
...
@@ -104,6 +109,41 @@ namespace Windows.Media.Effects {
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
Media.Effects.AudioEffectsManager)
,
uuid
(
66406
c04
-
86
fa
-
47
cc
-
a315
-
f489d8c3fe10
)
]
interface
IAudioEffectsManagerStatics
:
IInspectable
{
[
overload
(
"CreateAudioRenderEffectsManager"
)
]
HRESULT
CreateAudioRenderEffectsManager
(
[
in
]
HSTRING
device_id
,
[
in
]
Windows
.
Media.Render.AudioRenderCategory
category
,
[
out
,
retval
]
Windows
.
Media.Effects.AudioRenderEffectsManager
**
value
)
;
[
overload
(
"CreateAudioRenderEffectsManager"
)
]
HRESULT
CreateAudioRenderEffectsManagerWithMode
(
[
in
]
HSTRING
device_id
,
[
in
]
Windows
.
Media.Render.AudioRenderCategory
category
,
[
in
]
Windows
.
Media.AudioProcessing
mode
,
[
out
,
retval
]
Windows
.
Media.Effects.AudioRenderEffectsManager
**
value
)
;
[
overload
(
"CreateAudioCaptureEffectsManager"
)
]
HRESULT
CreateAudioCaptureEffectsManager
(
[
in
]
HSTRING
device_id
,
[
in
]
Windows
.
Media.Capture.MediaCategory
category
,
[
out
,
retval
]
Windows
.
Media.Effects.AudioCaptureEffectsManager
**
value
)
;
[
overload
(
"CreateAudioCaptureEffectsManager"
)
]
HRESULT
CreateAudioCaptureEffectsManagerWithMode
(
[
in
]
HSTRING
device_id
,
[
in
]
Windows
.
Media.Capture.MediaCategory
category
,
[
in
]
Windows
.
Media.AudioProcessing
mode
,
[
out
,
retval
]
Windows
.
Media.Effects.AudioCaptureEffectsManager
**
value
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
Media.Effects.AudioRenderEffectsManager)
,
uuid
(
4
dc98966
-
8751
-
42b2
-
bfcb
-
39
ca7864bd47
)
]
...
...
@@ -160,6 +200,16 @@ namespace Windows.Media.Effects {
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
marshaling_behavior
(
agile
),
static
(
Windows
.
Media.Effects.IAudioEffectsManagerStatics
,
Windows
.
Foundation.UniversalApiContract
,
1.0
),
threading
(
mta
)
]
runtimeclass
AudioEffectsManager
{
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
marshaling_behavior
(
agile
),
threading
(
mta
)
]
runtimeclass
AudioRenderEffectsManager
...
...
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