summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/mlua.h
diff options
context:
space:
mode:
authorKonstantin <apollo2k4@narod.ru>2018-05-20 21:05:22 +0300
committerKonstantin <apollo2k4@narod.ru>2018-05-20 21:05:22 +0300
commit3f90207479ee0a6530631812717801a54093658c (patch)
tree6fd49e050ec5179df59fc5badc18e5668e0d6008 /plugins/MirLua/src/mlua.h
parent7d6b89fd45814936d0edeff664bf5efb2d19b875 (diff)
parent5de8252e58fbdbebb8914e99a90bec06a0ff039f (diff)
Merge branch 'master' of https://github.com/miranda-ng/miranda-ng
Diffstat (limited to 'plugins/MirLua/src/mlua.h')
-rw-r--r--plugins/MirLua/src/mlua.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/plugins/MirLua/src/mlua.h b/plugins/MirLua/src/mlua.h
deleted file mode 100644
index d3f9cc3acd..0000000000
--- a/plugins/MirLua/src/mlua.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef _LUA_CORE_H_
-#define _LUA_CORE_H_
-
-class CMLua : public PLUGIN<CMLua>
-{
- friend class CMLuaOptions;
-
-private:
- lua_State *L;
-
- void Unload();
-
- INT_PTR __cdecl Eval(WPARAM, LPARAM);
- INT_PTR __cdecl Call(WPARAM, LPARAM);
- INT_PTR __cdecl Exec(WPARAM, LPARAM);
-
-public:
- OBJLIST<CMLuaScript> Scripts;
-
- CMLua();
- ~CMLua();
-
- void Load();
- void Reload();
-};
-
-#endif //_LUA_CORE_H_