implement r/w of process memory

This commit is contained in:
2024-12-30 18:06:33 +00:00
parent ff7674615d
commit d6fb43adc1
6 changed files with 103 additions and 10 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ use windows::Win32::System::Threading::{
OpenProcess, PROCESS_ALL_ACCESS, PROCESS_VM_READ, PROCESS_VM_WRITE,
};
#[derive(Debug, Default)]
#[derive(Debug, Default, Clone)]
pub struct Handle(pub HANDLE);
impl Deref for Handle {