1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#[cfg(windows)]
pub mod wasapi;

#[cfg(target_os = "linux")]
pub mod pulse;

#[cfg(target_os = "android")]
pub mod opensles;

#[cfg(target_os = "android")]
pub mod aaudio;

pub(crate) mod api;
mod handle;

pub use crate::api::*;