Fixed build errors

This commit is contained in:
acidicoala
2025-09-07 02:36:14 +05:00
parent 4c08816eb6
commit 8ee2d77115
4 changed files with 16 additions and 26 deletions

View File

@@ -47,10 +47,12 @@
#define PARAMS(...) const void* RCX, __VA_ARGS__
#define ARGS(...) RCX, __VA_ARGS__
#define THIS RCX
#define DECLARE_EDX()
#else
#define PARAMS(...) const void* ECX, const void* EDX, __VA_ARGS__
#define ARGS(...) ECX, EDX, __VA_ARGS__
#define THIS ECX
#define DECLARE_EDX() const void* EDX = nullptr;
#endif
using AppId_t = uint32_t;