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
cc1692bb
Commit
cc1692bb
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 AudioCaptureEffectsManager runtimeclass in windows.media.effects.idl.
parent
a602e370
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
windows.media.effects.idl
include/windows.media.effects.idl
+32
-0
No files found.
include/windows.media.effects.idl
View file @
cc1692bb
...
...
@@ -26,14 +26,17 @@ import "windows.foundation.idl";
namespace
Windows
.
Media.Effects
{
typedef
enum
AudioEffectType
AudioEffectType
;
interface
IAudioCaptureEffectsManager
;
interface
IAudioEffect
;
runtimeclass
AudioCaptureEffectsManager
;
runtimeclass
AudioEffect
;
declare
{
interface
Windows
.
Foundation.Collections.IIterable<Windows.Media.Effects.AudioEffect
*
>
;
interface
Windows
.
Foundation.Collections.IIterator<Windows.Media.Effects.AudioEffect
*
>
;
interface
Windows
.
Foundation.Collections.IVectorView<Windows.Media.Effects.AudioEffect
*
>
;
interface
Windows
.
Foundation.TypedEventHandler<Windows.Media.Effects.AudioCaptureEffectsManager
*
,
IInspectable
*
>
;
}
[
...
...
@@ -67,6 +70,25 @@ namespace Windows.Media.Effects {
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
Media.Effects.AudioCaptureEffectsManager)
,
uuid
(
8
f85c271
-038d-4393
-
8298
-
540110608
eef
)
]
interface
IAudioCaptureEffectsManager
:
IInspectable
{
[
eventadd
]
HRESULT
AudioCaptureEffectsChanged
(
[
in
]
Windows
.
Foundation.TypedEventHandler<Windows.Media.Effects.AudioCaptureEffectsManager
*
,
IInspectable
*
>
*
handler
,
[
out
,
retval
]
EventRegistrationToken
*
token
)
;
[
eventremove
]
HRESULT
AudioCaptureEffectsChanged
(
[
in
]
EventRegistrationToken
token
)
;
HRESULT
GetAudioCaptureEffects
(
[
out
,
retval
]
Windows
.
Foundation.Collections.IVectorView<Windows.Media.Effects.AudioEffect
*
>
**
effects
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
Media.Effects.AudioEffect)
,
uuid
(
34
aafa51
-
9207
-
4055
-
be93
-
6
e5734a86ae4
)
]
...
...
@@ -80,6 +102,16 @@ namespace Windows.Media.Effects {
marshaling_behavior
(
agile
),
threading
(
mta
)
]
runtimeclass
AudioCaptureEffectsManager
{
[
default
]
interface
Windows
.
Media.Effects.IAudioCaptureEffectsManager;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
marshaling_behavior
(
agile
),
threading
(
mta
)
]
runtimeclass
AudioEffect
{
[
default
]
interface
Windows
.
Media.Effects.IAudioEffect;
...
...
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