From 6935797e95452a23874692a5b7a79aa5cf8e6ca8 Mon Sep 17 00:00:00 2001 From: MikalaiR Date: Sat, 16 Jan 2016 18:38:10 +0000 Subject: MirLua: database consts git-svn-id: http://svn.miranda-ng.org/main/trunk@16102 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/MirLua/src/stdafx.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'plugins/MirLua/src/stdafx.h') 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, ...); -- cgit v1.2.3