3 |
|
using System.Linq; |
4 |
|
using System.Text; |
5 |
|
|
6 |
< |
namespace Sojaner.MemoryScanner |
6 |
> |
namespace Sojaner.MemoryScanner.MemoryProviers |
7 |
|
{ |
8 |
|
public interface IReadMemory |
9 |
|
{ |
10 |
< |
bool ReadMemory(uint address, out byte value); |
11 |
< |
bool ReadMemory(uint address, out sbyte value); |
12 |
< |
bool ReadMemory(uint address, out ushort value); |
13 |
< |
bool ReadMemory(uint address, out short value); |
14 |
< |
bool ReadMemory(uint address, out uint value); |
15 |
< |
bool ReadMemory(uint address, out int value); |
16 |
< |
bool ReadMemory(uint address, out ulong value); |
17 |
< |
bool ReadMemory(uint address, out long value); |
10 |
> |
bool ReadMemory(ulong address, out byte value); |
11 |
> |
bool ReadMemory(ulong address, out sbyte value); |
12 |
> |
bool ReadMemory(ulong address, out ushort value); |
13 |
> |
bool ReadMemory(ulong address, out short value); |
14 |
> |
bool ReadMemory(ulong address, out uint value); |
15 |
> |
bool ReadMemory(ulong address, out int value); |
16 |
> |
bool ReadMemory(ulong address, out ulong value); |
17 |
> |
bool ReadMemory(ulong address, out long value); |
18 |
|
} |
19 |
|
} |