blob: adc90eacd833e188e47fc5f5ac11cd88bc19202e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#![deny(
warnings,
nonstandard_style,
unused,
future_incompatible,
rust_2018_idioms
)]
// TODO
#![deny(clippy::pedantic)] // clippy::all, clippy::nursery,
mod error;
mod ioctl;
pub use winapi::um::ioapiset::DeviceIoControl;
pub use crate::{
error::Error,
ioctl::{ControlCode, DeviceType, RequiredAccess, TransferMethod},
};
|