diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-07-21 20:35:22 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-07-21 20:35:22 +0000 |
commit | ae848e861113a8fcda9cf0691df22cfb739a7682 (patch) | |
tree | f3f6e01456933a2f0f80812216a29321bd45a39e /plugins/MirLua/src/stdafx.h | |
parent | ca48ce4dd4078c5443318fbda49d8894d4087d46 (diff) |
MirLua: added module m_hotkeys
git-svn-id: http://svn.miranda-ng.org/main/trunk@14615 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/stdafx.h')
-rw-r--r-- | plugins/MirLua/src/stdafx.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/MirLua/src/stdafx.h b/plugins/MirLua/src/stdafx.h index 96175e0ff0..62eaa25326 100644 --- a/plugins/MirLua/src/stdafx.h +++ b/plugins/MirLua/src/stdafx.h @@ -16,6 +16,7 @@ #include <m_genmenu.h>
#include <m_clist.h>
+#include <m_hotkeys.h>
#include <m_icolib.h>
#include <m_message.h>
#include <m_protocols.h>
@@ -76,6 +77,9 @@ LUAMOD_API int (luaopen_m_icolib)(lua_State *L); #include "m_genmenu.h"
+#define MLUA_HOTKEYS "m_hotkeys"
+LUAMOD_API int (luaopen_m_hotkeys)(lua_State *L);
+
#define MLUA_MESSAGE "m_message"
LUAMOD_API int (luaopen_m_message)(lua_State *L);
|