mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-05-08 14:25:43 +08:00
Java API
This commit is contained in:
22
vmmjava/vmm/entry/VmmMap_ModuleExport.java
Normal file
22
vmmjava/vmm/entry/VmmMap_ModuleExport.java
Normal file
@@ -0,0 +1,22 @@
|
||||
package vmm.entry;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @see https://github.com/ufrisk/MemProcFS
|
||||
* @author Ulf Frisk - pcileech@frizk.net
|
||||
*/
|
||||
public class VmmMap_ModuleExport implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -7123227183229190306L;
|
||||
public long vaFunction;
|
||||
public int dwOrdinal;
|
||||
public int oFunctionsArray;
|
||||
public int oNamesArray;
|
||||
public String uszModule;
|
||||
public String uszFunction;
|
||||
|
||||
public String toString() {
|
||||
return "VmmMap_ModuleExport:" + uszModule + "!" + uszFunction;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user