mirror of
https://github.com/Bloodysharp/imgui-menu-for-rainbow-six-siege.git
synced 2025-06-12 20:40:06 +08:00
10 lines
266 B
C
10 lines
266 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 |