Initial public release of rem-essentials

This commit is contained in:
2026-08-11 16:48:50 +02:00
commit d611924a5e
161 changed files with 9792 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#pragma once
#define NAKED __declspec(naked)
#define NOINLINE __declspec(noinline)
#define FL_FUNC(func, addr) \
NAKED NOINLINE func \
{ \
__asm mov eax, addr \
__asm jmp eax \
}