summaryrefslogtreecommitdiffstats
path: root/third_party/rust/coreaudio-sys-utils/src/aggregate_device.rs
blob: 5c0d230967e0b4881d1d27c488ce08e71f15cca6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// A compile-time static string mapped to kAudioAggregateDeviceNameKey
pub const AGGREGATE_DEVICE_NAME_KEY: &str = "name";

// A compile-time static string mapped to kAudioAggregateDeviceUIDKey
pub const AGGREGATE_DEVICE_UID_KEY: &str = "uid";

// A compile-time static string mapped to kAudioAggregateDeviceIsPrivateKey
pub const AGGREGATE_DEVICE_PRIVATE_KEY: &str = "private";

// A compile-time static string mapped to kAudioAggregateDeviceIsStackedKey
pub const AGGREGATE_DEVICE_STACKED_KEY: &str = "stacked";

// A compile-time static string mapped to  kAudioAggregateDeviceSubDeviceListKey
pub const AGGREGATE_DEVICE_SUB_DEVICE_LIST_KEY: &str = "subdevices";

// A compile-time static string mapped to kAudioSubDeviceUIDKey
pub const SUB_DEVICE_UID_KEY: &str = "uid";