mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-05-10 15:26:08 +08:00
Java API
This commit is contained in:
19
vmmjava/vmm/entry/VmmMap_PoolMap.java
Normal file
19
vmmjava/vmm/entry/VmmMap_PoolMap.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package vmm.entry;
|
||||
|
||||
import java.util.Map;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @see https://github.com/ufrisk/MemProcFS
|
||||
* @author Ulf Frisk - pcileech@frizk.net
|
||||
*/
|
||||
public class VmmMap_PoolMap implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -2515154533742691192L;
|
||||
public Map<String, Map<Long, VmmMap_PoolEntry>> tag;
|
||||
public Map<Long, VmmMap_PoolEntry> va;
|
||||
|
||||
public String toString() {
|
||||
return "VmmMap_PoolMap";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user