mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-06-25 15:27:09 +08:00
Java API
This commit is contained in:
26
vmmjava/vmm/entry/VmmMap_ModuleSection.java
Normal file
26
vmmjava/vmm/entry/VmmMap_ModuleSection.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package vmm.entry;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @see https://github.com/ufrisk/MemProcFS
|
||||
* @author Ulf Frisk - pcileech@frizk.net
|
||||
*/
|
||||
public class VmmMap_ModuleSection implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -8748153308397838653L;
|
||||
public String name;
|
||||
public int MiscVirtualSize;
|
||||
public int VirtualAddress;
|
||||
public int SizeOfRawData;
|
||||
public int PointerToRawData;
|
||||
public int PointerToRelocations;
|
||||
public int PointerToLinenumbers;
|
||||
public short NumberOfRelocations;
|
||||
public short NumberOfLinenumbers;
|
||||
public int Characteristics;
|
||||
|
||||
public String toString() {
|
||||
return "VmmMap_ModuleSection:" + name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user