source: Daodan/src/Daodan_Patch.h@ 681

Last change on this file since 681 was 677, checked in by alloc, 12 years ago

Daodan: Updated src to work with MinGW

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