void SetMemory(ulong Address, object Bytes)
{
IProcess.SetMemory(Address, Bytes);
}
void GetMemory(ulong Address, uint ByteCount, out uint Bytes)
{
IProcess.GetMemory(Address, ByteCount, out Bytes);
}
void SendConsoleInput(string InptText)
{
IProcess.SendConsoleInput(eConsoleOutputPort.STREAM_STDERR, InptText);
}
byte[] buffer = new byte[] { 0xFF, 0xFF };
SetMemory(0xFFFFF, buffer);
