Add files via upload

This commit is contained in:
Fujiwara
2024-09-27 19:50:55 +03:00
committed by GitHub
parent 162c404695
commit ce7204ef51
83 changed files with 115350 additions and 0 deletions

10
SDK/Include/detours.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef _DETOURS_H
#define _DETOURS_H
extern "C" int __cdecl mlde32(void *codeptr);
int DetourLen(BYTE *src, int minlen);
void *DetourCreate(BYTE *src, const BYTE *dst, const int minlen=0);
void DetourRemove(BYTE *src, BYTE *restore, const int len=0);
#endif