toy-arms 0.1.0

A crates designed to ease game hack in rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::ffi::c_void;
mod iat_hook;

mod keyboard;
#[doc(inline)]
pub use keyboard::*;

mod macro_utils;
#[doc(inline)]
pub use self::macro_utils::*;

type LPVOID = *mut c_void;