mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-05-24 03:19:49 +08:00
Java API
This commit is contained in:
26
vmmjava/vmm/entry/VmmMap_ModuleImport.java
Normal file
26
vmmjava/vmm/entry/VmmMap_ModuleImport.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_ModuleImport implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -3945880871638085047L;
|
||||
public long vaFunction;
|
||||
public String uszFunction;
|
||||
public String uszModule;
|
||||
// Thunk
|
||||
public boolean f32;
|
||||
public short wHint;
|
||||
public int rvaFirstThunk;
|
||||
public int rvaOriginalFirstThunk;
|
||||
public int rvaNameModule;
|
||||
public int rvaNameFunction;
|
||||
|
||||
public String toString() {
|
||||
return "VmmMap_ModuleImport:" + uszModule + "!" + uszFunction;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user