linux_audio/lib.rs
1//! Direct interface to the Linux kernel audio API.
2//!
3//! Currently this is limited only to exposing some raw ioctl requests for
4//! use with [`linux_io::File::ioctl`]. In future it might grow to include
5//! some higher-level (but still relatively un-abstracted) wrapper API too.
6
7pub mod ioctl;
8pub mod raw;