4 |
using System.Text; |
using System.Text; |
5 |
using WeifenLuo.WinFormsUI.Docking; |
using WeifenLuo.WinFormsUI.Docking; |
6 |
using System.Diagnostics; |
using System.Diagnostics; |
7 |
|
using ManagedWinapi; |
8 |
|
|
9 |
namespace RomCheater.Core |
namespace RomCheater.Core |
10 |
{ |
{ |
25 |
{ |
{ |
26 |
bool IsNullPlugin { get; } |
bool IsNullPlugin { get; } |
27 |
bool IsGenericPlugin { get; } |
bool IsGenericPlugin { get; } |
28 |
|
|
29 |
|
void ReadProcessMemory(ulong MemoryAddress, ulong bytesToRead, out ulong bytesRead, out byte[] data); |
30 |
|
void WriteProcessMemory(long MemoryAddress, byte[] bytesToWrite, out ulong bytesWritten); |
31 |
|
List<MEMORY_REGION_INFORMATION> QueryMemoryRegions(); |
32 |
} |
} |
33 |
#region IPluginBase SubMembers |
#region IPluginBase SubMembers |
34 |
public interface IToString { string ToString(); } |
public interface IToString { string ToString(); } |