summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/mlua.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MirLua/src/mlua.h')
-rw-r--r--plugins/MirLua/src/mlua.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/MirLua/src/mlua.h b/plugins/MirLua/src/mlua.h
index 7a4ffd036b..f4378c1c57 100644
--- a/plugins/MirLua/src/mlua.h
+++ b/plugins/MirLua/src/mlua.h
@@ -5,6 +5,9 @@ class CMLua
{
private:
lua_State *L;
+ HANDLE hConsole;
+
+ int luaopen_m(lua_State *L);
void Preload(const char *name, lua_CFunction func);
@@ -12,8 +15,6 @@ public:
CMLua();
~CMLua();
- static luaL_Reg coreFunctions[10];
-
void Load(const char *name);
};