forward-dll-mini 0.1.16

Forward dll functions.
Documentation
  • Coverage
  • 9.09%
    1 out of 11 items documented1 out of 7 items with examples
  • Size
  • Source code size: 18.28 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.28 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • vsylva
forward-dll-mini-0.1.16 has been yanked.

forward-dll-mini

Crates.io GitHub

Crates.io GitHub

// Cargo.toml

[lib]
name = "dinput8"
//  name = "d3d11"
//  Not only supports dinput8 and d3d11... test it yourself
crate-type = ["cdylib"]

[build-dependencies]
forward_dll_mini = { git = "https://github.com/vSylva/forward-dll-mini" }
// build.rs

use forward_dll_mini::forward_dll;

fn main() {
    forward_dll("C:\\Windows\\System32\\dinput8.dll").unwrap();
    //  forward_dll("C:\\Windows\\System32\\d3d11.dll").unwrap();
}