summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/m_core.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2015-07-06 12:38:11 +0000
committerAlexander Lantsev <aunsane@gmail.com>2015-07-06 12:38:11 +0000
commit044f684c197b7dc71556b2c26415cdc694ba51a3 (patch)
treeea540f29fbde157f45a15fe1003738a818f22919 /plugins/MirLua/src/m_core.h
parente4d6b6be1f71fd5c8b02ef10d4c130fb5673b76e (diff)
MirLua:
- fixed correct hooks/services cleanup on reload - added functions OnScriptLoaded and OnScriptUnload to m git-svn-id: http://svn.miranda-ng.org/main/trunk@14498 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/m_core.h')
-rw-r--r--plugins/MirLua/src/m_core.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/plugins/MirLua/src/m_core.h b/plugins/MirLua/src/m_core.h
deleted file mode 100644
index 8313c3383d..0000000000
--- a/plugins/MirLua/src/m_core.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef _LUA_M_CORE_H_
-#define _LUA_M_CORE_H_
-
-#define MLUA_CORE "m"
-LUAMOD_API int (luaopen_m)(lua_State *L);
-
-static LIST<void> Hooks(1, PtrKeySortT);
-static LIST<void> Events(1, PtrKeySortT);
-static LIST<void> Services(1, PtrKeySortT);
-
-struct HandleRefParam
-{
- HANDLE h;
- int ref;
- lua_State *L;
- HandleRefParam(HANDLE h) : L(NULL), h(h), ref(0) { }
- HandleRefParam(lua_State *L, HANDLE h, int ref = 0) : L(L), h(h), ref(ref) { }
-};
-
-static LIST<void> HookRefs(1, HandleKeySortT);
-static LIST<void> ServiceRefs(1, HandleKeySortT);
-
-void KillModuleEventHooks();
-void KillModuleServices();
-
-#endif //_LUA_M_CORE_H_ \ No newline at end of file