cural 0.1.3

Windows process memory model
Documentation
  • Coverage
  • 0%
    0 out of 1 items documented0 out of 0 items with examples
  • Size
  • Source code size: 9.59 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 229.46 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • 402status/cural
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CURVoid

Cural v0.1.3 | Windows process memory model

Supported OS's

  • Windows

Links

Changelog

  • Using winapi instead of windows crate
  • Added is_x64 method to Process struct

Examples

use cural::Process;
let process = Process::find("process.exe").expect("no such process");
println!("found {}", process);
let modules = process.get_all_modules().expect("cannot get modules");
println!("modules - {:?}", modules);