-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCodeReplacer.hpp
48 lines (44 loc) · 998 Bytes
/
CodeReplacer.hpp
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
#pragma once
#define CODEREPLACER_START \
__asm __emit 0xEB \
__asm __emit 0x10 \
__asm __emit 0x57 \
__asm __emit 0x4C \
__asm __emit 0x20 \
__asm __emit 0x20 \
__asm __emit 0x04 \
__asm __emit 0x00 \
__asm __emit 0x00 \
__asm __emit 0x00 \
__asm __emit 0x00 \
__asm __emit 0x00 \
__asm __emit 0x00 \
__asm __emit 0x00 \
__asm __emit 0x57 \
__asm __emit 0x4C \
__asm __emit 0x20 \
__asm __emit 0x20 \
#define CODEREPLACER_END \
__asm __emit 0xEB \
__asm __emit 0x10 \
__asm __emit 0x57 \
__asm __emit 0x4C \
__asm __emit 0x20 \
__asm __emit 0x20 \
__asm __emit 0x05 \
__asm __emit 0x00 \
__asm __emit 0x00 \
__asm __emit 0x00 \
__asm __emit 0x00 \
__asm __emit 0x00 \
__asm __emit 0x00 \
__asm __emit 0x00 \
__asm __emit 0x57 \
__asm __emit 0x4C \
__asm __emit 0x20 \
__asm __emit 0x20 \
namespace CodeReplacer
{
static std::vector< std::pair< PBYTE, PBYTE > > to_replace;
void SetupReplacer(DWORD start, DWORD end);
};