-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathNativeCore.hpp
More file actions
26 lines (19 loc) · 1.41 KB
/
NativeCore.hpp
File metadata and controls
26 lines (19 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#pragma once
#include "../ReClassNET_Plugin.hpp"
#include "../Shared/Keys.hpp"
void RC_CallConv EnumerateProcesses(EnumerateProcessCallback callbackProcess);
void RC_CallConv EnumerateRemoteSectionsAndModules(RC_Pointer handle, EnumerateRemoteSectionsCallback callbackSection, EnumerateRemoteModulesCallback callbackModule);
RC_Pointer RC_CallConv OpenRemoteProcess(RC_Pointer id, ProcessAccess desiredAccess);
bool RC_CallConv IsProcessValid(RC_Pointer handle);
void RC_CallConv CloseRemoteProcess(RC_Pointer handle);
bool RC_CallConv ReadRemoteMemory(RC_Pointer handle, RC_Pointer address, RC_Pointer buffer, int offset, int size);
bool RC_CallConv WriteRemoteMemory(RC_Pointer handle, RC_Pointer address, RC_Pointer buffer, int offset, int size);
void RC_CallConv ControlRemoteProcess(RC_Pointer handle, ControlRemoteProcessAction action);
bool RC_CallConv AttachDebuggerToProcess(RC_Pointer id);
void RC_CallConv DetachDebuggerFromProcess(RC_Pointer id);
bool RC_CallConv AwaitDebugEvent(DebugEvent* evt, int timeoutInMilliseconds);
void RC_CallConv HandleDebugEvent(DebugEvent* evt);
bool RC_CallConv SetHardwareBreakpoint(RC_Pointer id, RC_Pointer address, HardwareBreakpointRegister reg, HardwareBreakpointTrigger type, HardwareBreakpointSize size, bool set);
RC_Pointer RC_CallConv InitializeInput();
bool RC_CallConv GetPressedKeys(RC_Pointer handle, Keys* state[], int* count);
void RC_CallConv ReleaseInput(RC_Pointer handle);