|
3 | 3 | #include "ReClassNET_Plugin.hpp" |
4 | 4 |
|
5 | 5 | void __stdcall EnumerateProcesses(EnumerateProcessCallback callbackProcess); |
6 | | -void __stdcall EnumerateRemoteSectionsAndModules(RC_Pointer process, EnumerateRemoteSectionsCallback callbackSection, EnumerateRemoteModulesCallback callbackModule); |
| 6 | +void __stdcall EnumerateRemoteSectionsAndModules(RC_Pointer handle, EnumerateRemoteSectionsCallback callbackSection, EnumerateRemoteModulesCallback callbackModule); |
7 | 7 |
|
8 | 8 | RC_Pointer __stdcall OpenRemoteProcess(RC_Pointer id, ProcessAccess desiredAccess); |
9 | 9 | bool __stdcall IsProcessValid(RC_Pointer handle); |
10 | 10 | void __stdcall CloseRemoteProcess(RC_Pointer handle); |
11 | 11 |
|
12 | 12 | bool __stdcall ReadRemoteMemory(RC_Pointer handle, RC_Pointer address, RC_Pointer buffer, int offset, int size); |
13 | | -bool __stdcall WriteRemoteMemory(RC_Pointer process, RC_Pointer address, RC_Pointer buffer, int offset, int size); |
| 13 | +bool __stdcall WriteRemoteMemory(RC_Pointer handle, RC_Pointer address, RC_Pointer buffer, int offset, int size); |
14 | 14 |
|
15 | 15 | void __stdcall ControlRemoteProcess(RC_Pointer handle, ControlRemoteProcessAction action); |
16 | 16 |
|
17 | 17 | bool __stdcall AttachDebuggerToProcess(RC_Pointer id); |
18 | 18 | void __stdcall DetachDebuggerFromProcess(RC_Pointer id); |
19 | | -bool __stdcall WaitForDebugEvent(DebugEvent* evt, int timeoutInMilliseconds); |
20 | | -void __stdcall ContinueDebugEvent(DebugEvent* evt); |
21 | | -bool __stdcall SetHardwareBreakpoint(RC_Pointer processId, RC_Pointer address, HardwareBreakpointRegister reg, HardwareBreakpointTrigger type, HardwareBreakpointSize size, bool set); |
| 19 | +bool __stdcall AwaitForDebugEvent(DebugEvent* evt, int timeoutInMilliseconds); |
| 20 | +void __stdcall HandleDebugEvent(DebugEvent* evt); |
| 21 | +bool __stdcall SetHardwareBreakpoint(RC_Pointer id, RC_Pointer address, HardwareBreakpointRegister reg, HardwareBreakpointTrigger type, HardwareBreakpointSize size, bool set); |
0 commit comments