mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-05-08 06:19:45 +08:00
23 lines
568 B
Java
23 lines
568 B
Java
package vmm.entry;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @see https://github.com/ufrisk/MemProcFS
|
|
* @author Ulf Frisk - pcileech@frizk.net
|
|
*/
|
|
public class VmmMap_PteEntry implements Serializable
|
|
{
|
|
private static final long serialVersionUID = -7463671464805453585L;
|
|
public long vaBase;
|
|
public long cPages;
|
|
public long fPage;
|
|
public boolean fWow64;
|
|
public String strDescription;
|
|
public int cSoftware;
|
|
|
|
public String toString() {
|
|
return "VmmMap_PteEntry:" + Long.toHexString(vaBase) + ":" + Long.toHexString(cPages);
|
|
}
|
|
}
|