summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/stdafx.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MirLua/src/stdafx.h')
-rw-r--r--plugins/MirLua/src/stdafx.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/MirLua/src/stdafx.h b/plugins/MirLua/src/stdafx.h
index 109e91c1e4..5f4b58a781 100644
--- a/plugins/MirLua/src/stdafx.h
+++ b/plugins/MirLua/src/stdafx.h
@@ -41,6 +41,12 @@
class CMLuaScript;
+struct luaM_const
+{
+ char *name;
+ intptr_t value;
+};
+
#include "mlua.h"
#include "mlua_script.h"
#include "mlua_module_loader.h"
@@ -103,6 +109,16 @@ LUAMOD_API int (luaopen_m_variables)(lua_State *L);
/* utils */
+__forceinline void luaM_loadConsts(lua_State *L, luaM_const consts[])
+{
+ for (size_t i = 0; consts[i].name != NULL; i++)
+ {
+ lua_pushstring(L, consts[i].name);
+ lua_pushnumber(L, consts[i].value);
+ lua_settable(L, -3);
+ }
+}
+
extern HANDLE hNetlib;
void Log(const char *format, ...);
void Log(const wchar_t *format, ...);