source: Daodan/src/Daodan_Patch.h@ 1112

Last change on this file since 1112 was 1008, checked in by alloc, 10 years ago

Daodan 3.9: Added AI awareness patch (fixes #36)

File size: 794 bytes
Line 
1#ifndef DAODAN_PATCH_H
2#define DAODAN_PATCH_H
3
4#include "stdint.h"
5
6#define DDrPatch_Const(d, c) DDrPatch_String(d, c, sizeof(c))
7
8#define OniExe ((char*)0x00400000)
9
10bool DDrPatch_MakeJump(void* from, void* to);
11bool DDrPatch_MakeCall(void* from, void* to);
12void* DDrPatch_MakeDetour(void* from, void* to);
13bool DDrPatch_String(char* dest, const unsigned char* string, int length);
14bool DDrPatch_Byte(char* dest, unsigned char value);
15bool DDrPatch_Int32(int* dest, unsigned int value);
16bool DDrPatch_Int16(short* dest, unsigned short value);
17bool DDrPatch_NOOP(char* dest, unsigned int length);
18void* DDrPatch_ExecutableASM(char* from, char* nextInst, const unsigned char* code, int length);
19
20void DDrPatch_PrintDisasm(void* addr, int instLimit, int sizeLimit);
21
22#endif
Note: See TracBrowser for help on using the repository browser.