Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
src/ | H | 03-May-2022 | - | 20,937 | 20,865 | |
.cargo-checksum.json | H A D | 03-May-2022 | 89 | 1 | 1 | |
.cargo_vcs_info.json | H A D | 23-Oct-2020 | 74 | 6 | 5 | |
Cargo.toml | H A D | 23-Oct-2020 | 1.5 KiB | 41 | 38 | |
Cargo.toml.orig-cargo | H A D | 23-Oct-2020 | 981 | 31 | 27 | |
LICENSE-APACHE | H A D | 24-Jul-2018 | 11.1 KiB | 202 | 169 | |
LICENSE-MIT | H A D | 24-Jul-2018 | 1,023 | 18 | 15 | |
README.md | H A D | 08-May-2020 | 1.4 KiB | 20 | 16 | |
build.rs | H A D | 23-Oct-2020 | 429 | 16 | 14 |
README.md
1# ntapi [![AppVeyor][appveyor_badge]][appveyor_link] [![Travis][travis_badge]][travis_link] [![Crates.io][crates_badge]][crates_link] [![Documentation][docs_badge]][docs_link] [![Lines of Code][loc_badge]][loc_link] [![Unsafe][unsafe_badge]][unsafe_link] 2 3Rust FFI bindings for Native API. Mostly based on Process Hacker [phnt](https://github.com/processhacker/processhacker/tree/master/phnt) headers as the most complete source of bindings to be found. The comments there also contain useful information on how to use specific things. 4 5### Minimum supported Rust 6Always the latest stable. Some [features][docs_link] require a nightly compiler. 7 8[travis_link]: https://travis-ci.org/MSxDOS/ntapi 9[travis_badge]: https://travis-ci.org/MSxDOS/ntapi.svg?branch=master 10[appveyor_link]: https://ci.appveyor.com/project/MSxDOS/ntapi 11[appveyor_badge]: https://ci.appveyor.com/api/projects/status/i1fcmm0c5b7c6b6u/branch/master?svg=true 12[crates_link]: https://crates.io/crates/ntapi 13[crates_badge]: https://img.shields.io/crates/v/ntapi.svg 14[docs_link]: https://docs.rs/ntapi/*/x86_64-pc-windows-msvc/ntapi/ 15[docs_badge]: https://docs.rs/ntapi/badge.svg 16[loc_link]: https://github.com/Aaronepower/tokei 17[loc_badge]: https://tokei.rs/b1/github/MSxDOS/ntapi 18[unsafe_link]: https://doc.rust-lang.org/book/ch19-01-unsafe-rust.html 19[unsafe_badge]: https://img.shields.io/badge/unsafe-%E2%9C%94-C901DD.svg 20