diff options
| author | pravic <[email protected]> | 2016-04-12 22:13:32 +0300 |
|---|---|---|
| committer | pravic <[email protected]> | 2016-04-12 22:13:32 +0300 |
| commit | e65e59eef1922997c894983310407056d07a3929 (patch) | |
| tree | 8aedce72959ae65ec5650dcecc6d7983dae985b1 | |
| parent | add getting started guide (diff) | |
| download | winapi-kmd-rs-e65e59eef1922997c894983310407056d07a3929.tar.xz winapi-kmd-rs-e65e59eef1922997c894983310407056d07a3929.zip | |
set relative path to native libs
| -rw-r--r-- | README.md | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,8 +1,9 @@ ## Windows Kernel-Mode Drivers written in Rust -This library is just a proof-of-concept of windows kernel-mode drivers, which can be written in Rust programming language. +This library is just a proof-of-concept of the windows kernel-mode drivers, which can be written in Rust programming language. -It contains the types, constants and bindings for the [Windows Driver Kit](https://en.wikipedia.org/wiki/Windows_Driver_Kit) with target OS starting from Windows XP (x86/x64). +It contains the types, constants and bindings for the [Windows Driver Kit](https://en.wikipedia.org/wiki/Windows_Driver_Kit) +with target OS starting from Windows XP (x86/x64). ### Getting started @@ -32,6 +33,9 @@ cd km\examples\01.minimal\ cargo build --release ``` +If linker fails with error *cannot open input file 'ntoskrnl.lib'*, +open `kmd-env-rs/.cargo/config` file and replace `../../../` with the full path to the *kmd-env-rs* directory. + ### Examples |