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
d53e989b
Commit
d53e989b
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 AudioRenderEffectsManager runtimeclass in windows.media.effects.idl.
parent
cc1692bb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
0 deletions
+51
-0
windows.media.effects.idl
include/windows.media.effects.idl
+51
-0
No files found.
include/windows.media.effects.idl
View file @
d53e989b
...
...
@@ -22,21 +22,26 @@
import
"inspectable.idl"
;
import
"windows.foundation.idl"
;
import
"windows.storage.streams.idl"
;
namespace
Windows
.
Media.Effects
{
typedef
enum
AudioEffectType
AudioEffectType
;
interface
IAudioCaptureEffectsManager
;
interface
IAudioEffect
;
interface
IAudioRenderEffectsManager
;
interface
IAudioRenderEffectsManager2
;
runtimeclass
AudioCaptureEffectsManager
;
runtimeclass
AudioEffect
;
runtimeclass
AudioRenderEffectsManager
;
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
*
>
;
interface
Windows
.
Foundation.TypedEventHandler<Windows.Media.Effects.AudioRenderEffectsManager
*
,
IInspectable
*
>
;
}
[
...
...
@@ -99,6 +104,41 @@ namespace Windows.Media.Effects {
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
Media.Effects.AudioRenderEffectsManager)
,
uuid
(
4
dc98966
-
8751
-
42b2
-
bfcb
-
39
ca7864bd47
)
]
interface
IAudioRenderEffectsManager
:
IInspectable
{
[
eventadd
]
HRESULT
AudioRenderEffectsChanged
(
[
in
]
Windows
.
Foundation.TypedEventHandler<Windows.Media.Effects.AudioRenderEffectsManager
*
,
IInspectable
*
>
*
handler
,
[
out
,
retval
]
EventRegistrationToken
*
token
)
;
[
eventremove
]
HRESULT
AudioRenderEffectsChanged
(
[
in
]
EventRegistrationToken
token
)
;
HRESULT
GetAudioRenderEffects
(
[
out
,
retval
]
Windows
.
Foundation.Collections.IVectorView<Windows.Media.Effects.AudioEffect
*
>
**
effects
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
Media.Effects.AudioRenderEffectsManager)
,
uuid
(
a844cd09
-
5
ecc
-
44b3
-
bb4e
-
1
db07287139c
)
]
interface
IAudioRenderEffectsManager2
:
IInspectable
{
[
propget
]
HRESULT
EffectsProviderThumbnail
(
[
out
,
retval
]
Windows
.
Storage.Streams.IRandomAccessStreamWithContentType
**
value
)
;
[
propget
]
HRESULT
EffectsProviderSettingsLabel
(
[
out
,
retval
]
HSTRING
*
value
)
;
HRESULT
ShowSettingsUI
()
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
marshaling_behavior
(
agile
),
threading
(
mta
)
]
...
...
@@ -116,4 +156,15 @@ namespace Windows.Media.Effects {
{
[
default
]
interface
Windows
.
Media.Effects.IAudioEffect;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
marshaling_behavior
(
agile
),
threading
(
mta
)
]
runtimeclass
AudioRenderEffectsManager
{
[
default
]
interface
Windows
.
Media.Effects.IAudioRenderEffectsManager;
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
)
]
interface
Windows
.
Media.Effects.IAudioRenderEffectsManager2;
}
}
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