separate Module from snapshot module

This commit is contained in:
2024-12-30 19:27:03 +00:00
parent 4c9273daed
commit 7095a197c6
6 changed files with 28 additions and 10 deletions
-2
View File
@@ -57,7 +57,6 @@ impl Process {
#[derive(Debug)]
pub struct Module {
pub process_id: u32,
pub name: String,
pub path: String,
pub base_address: usize,
@@ -99,7 +98,6 @@ impl Module {
.trim_end_matches('\0')
.to_string();
let module = Self {
process_id: pid,
name,
path,
base_address: module_entry_32_w.modBaseAddr as usize,