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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#ifndef NATIVE_H_INCLUDED
#define NATIVE_H_INCLUDED
#include <windows.h>
#include <stdbool.h>
#define EXPORT __declspec(dllexport)
typedef struct native_data native_data;
typedef unsigned long(*alloc_mem_fn)(const native_data *nd,
unsigned long siz);
typedef bool(*read_mem_fn)(const native_data *nd,
unsigned long addr, void *buffer,
unsigned long siz);
typedef bool(*write_mem_fn)(const native_data *nd,
unsigned long addr, const void *buffer,
unsigned long siz);
typedef bool(*suspend_proc_fn)(const native_data *nd,
int doResume);
typedef unsigned long(*iterate_mem_fn)(const native_data *nd,
unsigned long *addr,
unsigned long *size);
typedef struct win_proc
{
DWORD pid;
HANDLE hndl;
HMODULE modbase;
DWORD modsize;
} win_proc;
typedef struct native_data
{
win_proc proc;
alloc_mem_fn alloc_fn;
read_mem_fn read_fn;
write_mem_fn write_fn;
suspend_proc_fn suspend_fn;
iterate_mem_fn iterate_fn;
} native_data;
EXPORT void initNativeData(native_data *nd);
EXPORT void cls(HANDLE hConsole);
EXPORT bool get_module_proc(native_data *nd,
LPCTSTR window_name);
EXPORT bool get_module_info(native_data *nd,
LPCTSTR module_name);
EXPORT unsigned long mem_alloc(const native_data *nd,
unsigned long siz);
EXPORT bool read_procmem(const native_data *nd,
unsigned long addr, void *buffer,
unsigned long siz);
EXPORT bool write_procmem(const native_data *nd,
unsigned long addr, const void *buffer,
unsigned long siz);
EXPORT bool suspendProcess(const native_data *nd,
int doResume);
EXPORT unsigned long iterate_mem(const native_data *nd,
unsigned long *addr,
unsigned long *size);
#endif // NATIVE_H_INCLUDED
|