summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/mlua_script.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2015-07-18 19:43:12 +0000
committerAlexander Lantsev <aunsane@gmail.com>2015-07-18 19:43:12 +0000
commit059a7ea5928d49d81ed1d884e59c60f152983539 (patch)
tree8d4065bfa11f5cba5714d131842108c6a1286922 /plugins/MirLua/src/mlua_script.h
parent952154728cfc9a390f9f7b2e3326ea32d76e0003 (diff)
MirLua:
- removed OnScriptLoaded/OnScriptUnload - removed second script path - module loading and options refactoring - version bump git-svn-id: http://svn.miranda-ng.org/main/trunk@14587 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/mlua_script.h')
-rw-r--r--plugins/MirLua/src/mlua_script.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/plugins/MirLua/src/mlua_script.h b/plugins/MirLua/src/mlua_script.h
new file mode 100644
index 0000000000..0b299112b7
--- /dev/null
+++ b/plugins/MirLua/src/mlua_script.h
@@ -0,0 +1,30 @@
+#ifndef _LUA_SCRIPT_H_
+#define _LUA_SCRIPT_H_
+
+class CMLuaScript
+{
+private:
+ lua_State *L;
+
+ char* moduleName;
+ TCHAR* fileName;
+ TCHAR filePath[MAX_PATH];
+ bool isLoaded;
+ int group;
+ int unloadRef;
+
+public:
+ CMLuaScript(lua_State *L, const TCHAR* path, int iGroup = 0);
+ ~CMLuaScript();
+
+ const char* GetModuleName() const;
+
+ const TCHAR* GetFilePath() const;
+ const TCHAR* GetFileName() const;
+ const int GetGroup() const;
+
+ bool Load();
+ void Unload();
+};
+
+#endif //_LUA_SCRIPT_H_