blob: a128652d710ac784af9e34a190065d455681284a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// TODO
#![deny(
warnings,
nonstandard_style,
unused,
future_incompatible,
rust_2018_idioms
)]
#![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},
};
|