mirror of
https://github.com/Bloodysharp/Cheat-ImGui-Menu-Design.git
synced 2025-01-03 16:13:29 +08:00
10 lines
275 B
C
10 lines
275 B
C
#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 |