1 // Copyright © 2015, Peter Atashian
2 // Licensed under the MIT License <LICENSE.md>
3 ENUM!{enum AUDCLNT_SHAREMODE {
4     AUDCLNT_SHAREMODE_SHARED,
5     AUDCLNT_SHAREMODE_EXCLUSIVE,
6 }}
7 pub const AUDCLNT_STREAMFLAGS_CROSSPROCESS: ::DWORD = 0x00010000;
8 pub const AUDCLNT_STREAMFLAGS_LOOPBACK: ::DWORD = 0x00020000;
9 pub const AUDCLNT_STREAMFLAGS_EVENTCALLBACK: ::DWORD = 0x00040000;
10 pub const AUDCLNT_STREAMFLAGS_NOPERSIST: ::DWORD = 0x00080000;
11 pub const AUDCLNT_STREAMFLAGS_RATEADJUST: ::DWORD = 0x00100000;
12