jack_sys/
consts.rs

1/// JACK port type for 8 bit raw midi
2pub static RAW_MIDI_TYPE: &str = "8 bit raw midi";
3
4/// JACK port type for 32 bit float mono audio
5pub static FLOAT_MONO_AUDIO: &str = "32 bit float mono audio";
6
7/// The path to the jack library.
8pub const JACK_LIB: &str = if cfg!(windows) {
9    if cfg!(target_arch = "x86") {
10        "libjack.dll"
11    } else {
12        "libjack64.dll"
13    }
14} else if cfg!(target_vendor = "apple") {
15    "libjack.0.dylib"
16} else {
17    "libjack.so.0"
18};