maolan-engine 0.0.12

Audio engine for the Maolan DAW with audio/MIDI tracks, routing, export, and CLAP/VST3/LV2 hosting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(target_os = "linux")]
pub mod alsa_worker;
#[cfg(target_os = "macos")]
pub mod coreaudio_worker;
pub mod hw_worker;
#[cfg(target_os = "freebsd")]
pub mod oss_worker;
#[cfg(target_os = "openbsd")]
pub mod sndio_worker;
#[cfg(target_os = "windows")]
pub mod wasapi_worker;
pub mod worker;