mirror of
https://github.com/Dangoware/cd_reader.git
synced 2025-04-19 01:42:55 -05:00
13 lines
No EOL
213 B
Rust
13 lines
No EOL
213 B
Rust
use crate::{CDRomError, CDRomTrait};
|
|
|
|
pub struct CDRomWindows {}
|
|
|
|
impl CDRomWindows {
|
|
pub fn new() -> Result<Self, CDRomError> {
|
|
Ok(Self { })
|
|
}
|
|
}
|
|
|
|
impl CDRomTrait for CDRomWindows {
|
|
|
|
} |