source: Daodan/src/Daodan_Patch.h@ 738

Last change on this file since 738 was 692, checked in by alloc, 12 years ago

Daodan: Lots of cleanups (mostly unnecessary includes removed, empty files deleted, case of filenames corrected)

File size: 628 bytes
RevLine 
[272]1#ifndef DAODAN_PATCH_H
2#define DAODAN_PATCH_H
3
[692]4#include "stdint.h"
[272]5
6#define DDrPatch_Const(d, c) DDrPatch_String(d, c, sizeof(c))
7
[677]8#define OniExe ((char*)0x00400000)
[274]9
[272]10bool DDrPatch_MakeJump(void* from, void* to);
11bool DDrPatch_MakeCall(void* from, void* to);
[689]12bool DDrPatch_String(char* dest, const unsigned char* string, int length);
13bool DDrPatch_Byte(char* dest, unsigned char value);
14bool DDrPatch_Int32(int* dest, unsigned int value);
15bool DDrPatch_Int16(short* dest, unsigned short value);
[677]16bool DDrPatch__strdup(int* dest, const char* value);
[351]17bool DDrPatch_NOOP(char* dest, unsigned int length);
[272]18
19#endif
Note: See TracBrowser for help on using the repository browser.