mostly implement getting a running process

This commit is contained in:
2024-12-30 15:45:15 +00:00
parent 42d7b7d55e
commit a6a883c26e
9 changed files with 191 additions and 7 deletions
+6
View File
@@ -0,0 +1,6 @@
use haxor::Process;
fn main() {
dbg!(Process::with_pid(3440).unwrap());
dbg!(Process::with_name("notepad.exe").unwrap());
}