docs.rs failed to build faithe-0.3.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
faithe-0.8.0
Faithe
Memory hacking library for windows.
Instalation
[]
= "https://github.com/sy1ntexx/faithe"
Opening processes
use PROCESS_ALL_ACCESS;
use process as ps;
let process = new?
.find
.unwrap
.open?;
Modules iterating
let process = get_process;
process
.modules?
.for_each;
Reading / Writing memory
let process = get_process;
let mut value = process.?;
value += 100;
process.write_process_memory?;
Allocating / Freeing / Protecting / Querying memory
use ;
use ;
use MEM_RELEASE;
let process = get_process;
let mut chunk = process.virtual_allocate?;
let info = process.virtual_query?;
process.virtual_protect?;
process.virtual_free?;
Searching for patterns
use Pattern;
let process = get_process;
let address = process.find_pattern?;
Macros
use ;
;
// Creates a trait that will emulate behavior of virtual functions in C++.
interface!