alsa-sys 0.5.0

FFI bindings for the ALSA project (Advanced Linux Sound Architecture)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![no_std]

use libc::{FILE, pid_t, pollfd, timespec, timeval};

#[cfg(feature = "use-bindgen")]
include!(concat!(env!("OUT_DIR"), "/generated.rs"));

#[cfg(not(feature = "use-bindgen"))]
include!("generated.rs");