wdk 0.4.1

Safe idiomatic bindings to APIs available in the Windows Development Kit (WDK)
1
2
3
4
5
6
7
8
9
10
// Copyright (c) Microsoft Corporation
// License: MIT OR Apache-2.0

//! Safe abstractions over WDF APIs

pub use spinlock::*;
pub use timer::*;

mod spinlock;
mod timer;