ntapi 0.1.1

FFI bindings for Native API
Documentation
fn main() {
    #[cfg(feature = "user")] {
        if std::env::var("TARGET").map(
            |t| t == "x86_64-pc-windows-gnu" || t == "i686-pc-windows-gnu"
        ).unwrap_or(false) {
            println!("cargo:rustc-link-lib=winapi_ntdll");
        }
    }
}