3 releases
0.1.3 | Jun 16, 2023 |
---|---|
0.1.1 | Jun 15, 2023 |
0.1.0 | Jun 13, 2023 |
#209 in Windows APIs
Used in dllvoid
10KB
194 lines
Cural v0.1.3 | Windows process memory model
Supported OS's
- Windows
Links
docs.rs
- https://docs.rs/curalgithub
- https://github.com/CURVoid/cural.git
Changelog
- Using
winapi
instead ofwindows
crate - Added
is_x64
method toProcess
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);
Dependencies
~225KB