audir 0.1.0

Low-level audio library
Documentation
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::*;