#pragma once #ifndef DAODAN_PATCH_H #define DAODAN_PATCH_H #include #define DDrPatch_Const(d, c) DDrPatch_String(d, c, sizeof(c)) bool DDrPatch_MakeJump(void* from, void* to); bool DDrPatch_MakeCall(void* from, void* to); bool DDrPatch_String(char* dest, const char* string, int length); bool DDrPatch_Byte(char* dest, char value); bool DDrPatch_Int32(int* dest, int value); bool DDrPatch_Int16(short* dest, short value); #endif