normalize includes: zone

This commit is contained in:
brainiac
2025-12-18 00:59:27 -08:00
committed by Alex
parent 552a908f92
commit 7fe49b5630
278 changed files with 2431 additions and 2901 deletions
+6 -4
View File
@@ -1,7 +1,10 @@
#ifndef EQEMU_LUA_PTR_H
#define EQEMU_LUA_PTR_H
#pragma once
#ifdef LUA_EQEMU
#include "lua.hpp"
#include "luabind/luabind.hpp"
#ifndef EQEMU_UNSAFE_LUA
#define Lua_Safe_Call_Void() if(!d_) { return; } NativeType *self = reinterpret_cast<NativeType*>(d_)
#define Lua_Safe_Call_Bool() if(!d_) { return false; } NativeType *self = reinterpret_cast<NativeType*>(d_)
@@ -51,5 +54,4 @@ protected:
T *d_;
};
#endif
#endif
#endif // LUA_EQEMU