cd-da-reader 1.0.0

CD-DA (audio CD) reading library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(target_os = "linux")]
mod linux;
#[cfg(target_os = "macos")]
mod macos;
#[cfg(target_os = "windows")]
mod windows;

#[cfg(target_os = "linux")]
pub(crate) use linux::{Drive, list_drive_paths};
#[cfg(target_os = "macos")]
pub(crate) use macos::{Drive, list_drive_paths};
#[cfg(target_os = "windows")]
pub(crate) use windows::{Drive, list_drive_paths};

#[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows")))]
compile_error!("Unsupported platform");