libmwemu 0.24.1

x86 32/64bits and system internals emulator, for securely emulating malware and other stuff.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub struct MappingHandle {
    pub name: String,
    pub file_handle: Option<u32>, // Handle to the file being mapped (None if paging file)
    pub protect: u32,
    pub max_size: u64,
}

impl MappingHandle {
    pub fn new(name: String, file_handle: Option<u32>, protect: u32, max_size: u64) -> Self {
        Self {
            name,
            file_handle,
            protect,
            max_size,
        }
    }
}