diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-07-04 14:18:06 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-07-04 14:18:06 +0000 |
commit | aede5032296f9d2ff9b3de6787c5493254d00e2e (patch) | |
tree | 40d7e51b19bcef998cf74aa0879bf50cb2c87288 /plugins/MirLua/src/stdafx.h | |
parent | fee85fe9916e603d9fdd7e6c61e1f3380df59d51 (diff) |
MirLua: added module m_message
git-svn-id: http://svn.miranda-ng.org/main/trunk@14487 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 1b463b564a..6ceb174e11 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_icolib.h>
+#include <m_message.h>
#include <m_folders.h>
#include <m_msg_buttonsbar.h>
@@ -72,6 +73,9 @@ LUAMOD_API int (luaopen_m_icolib)(lua_State *L); #include "m_genmenu.h"
+#define MLUA_MESSAGE "m_message"
+LUAMOD_API int (luaopen_m_message)(lua_State *L);
+
#define MLUA_MSGBUTTONSBAR "m_msg_buttonsbar"
LUAMOD_API int (luaopen_m_msg_buttonsbar)(lua_State *L);
|