linux-audio 0.1.0

Client for the Linux kernel audio APIs.
Documentation
//! Low-level ioctl request definitions.

use linux_unsafe::ulong;

pub mod pcm;

/// ioctl request type for hwdep operations.
pub(crate) const IO_H: ulong = 'H' as ulong;

/// ioctl request type for PCM-related operations.
pub(crate) const IO_A: ulong = 'A' as ulong;

/// ioctl request type for raw-MIDI-related operations.
pub(crate) const IO_W: ulong = 'W' as ulong;

/// ioctl request type for timer-related operations.
pub(crate) const IO_T: ulong = 'T' as ulong;

// ioctl request type for control-related operations;
pub(crate) const IO_U: ulong = 'U' as ulong;