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
fae48444
Commit
fae48444
authored
Mar 13, 2023
by
Zebediah Figura
Committed by
Alexandre Julliard
Mar 23, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Use hexadecimal constants for XAudio flags.
parent
5f74cb94
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
xaudio2.idl
include/xaudio2.idl
+9
-9
No files found.
include/xaudio2.idl
View file @
fae48444
...
...
@@ -1226,15 +1226,15 @@ interface IXAudio2 : IUnknown
[
in
,
defaultvalue
(
NULL
)
]
void
*
pReserved
)
;
}
const
UINT32
XAUDIO2_DEBUG_ENGINE
=
1
;
const
UINT32
XAUDIO2_VOICE_NOPITCH
=
2
;
const
UINT32
XAUDIO2_VOICE_NOSRC
=
4
;
const
UINT32
XAUDIO2_VOICE_USEFILTER
=
8
;
const
UINT32
XAUDIO2_VOICE_MUSIC
=
16
;
const
UINT32
XAUDIO2_PLAY_TAILS
=
32
;
const
UINT32
XAUDIO2_END_OF_STREAM
=
64
;
const
UINT32
XAUDIO2_SEND_USEFILTER
=
128
;
const
UINT32
XAUDIO2_VOICE_NOSAMPLESPLAYED
=
256
;
const
UINT32
XAUDIO2_DEBUG_ENGINE
=
0
x0000000
1
;
const
UINT32
XAUDIO2_VOICE_NOPITCH
=
0
x0000000
2
;
const
UINT32
XAUDIO2_VOICE_NOSRC
=
0
x0000000
4
;
const
UINT32
XAUDIO2_VOICE_USEFILTER
=
0
x0000000
8
;
const
UINT32
XAUDIO2_VOICE_MUSIC
=
0
x00000010
;
const
UINT32
XAUDIO2_PLAY_TAILS
=
0
x00000020
;
const
UINT32
XAUDIO2_END_OF_STREAM
=
0
x00000040
;
const
UINT32
XAUDIO2_SEND_USEFILTER
=
0
x00000080
;
const
UINT32
XAUDIO2_VOICE_NOSAMPLESPLAYED
=
0
x00000100
;
const
XAUDIO2_FILTER_TYPE
XAUDIO2_DEFAULT_FILTER_TYPE
=
LowPassFilter
;
const
float
XAUDIO2_DEFAULT_FILTER_FREQUENCY
=
XAUDIO2_MAX_FILTER_FREQUENCY
;
...
...
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