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