mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-05-08 06:19:45 +08:00
27 lines
526 B
Java
27 lines
526 B
Java
package leechcore.entry;
|
|
|
|
import leechcore.ILeechCoreBarReply;
|
|
|
|
/**
|
|
* @see https://github.com/ufrisk/LeechCore
|
|
* @author Ulf Frisk - pcileech@frizk.net
|
|
*/
|
|
public class LeechCoreBarRequest
|
|
{
|
|
public ILeechCoreBarReply reply;
|
|
public LeechCoreBar bar;
|
|
public byte bTag;
|
|
public byte bFirstBE;
|
|
public byte bLastBE;
|
|
public boolean is64Bit;
|
|
public boolean isRead;
|
|
public boolean isWrite;
|
|
public int cbData;
|
|
public long oData;
|
|
public byte[] pbDataWrite;
|
|
|
|
public String toString() {
|
|
return "LeechCoreBarRequest";
|
|
}
|
|
}
|