summaryrefslogtreecommitdiff
path: root/crates/winioctl/src/lib.rs
blob: 8cd45b4e0ae307d6d0357b7a3c9e0afeab835a86 (plain) (blame)
1
2
3
4
5
6
7
8
9
mod error;
mod ioctl;

pub use winapi::um::ioapiset::DeviceIoControl;

pub use crate::{
  error::Error,
  ioctl::{ControlCode, DeviceType, RequiredAccess, TransferMethod},
};