diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-06-12 19:38:39 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-06-12 19:38:39 +0000 |
commit | 0420af6e7d00d0877f53b6ea4434050c44b8dd4f (patch) | |
tree | 1d989dbada8b3165fca6077fd93cc7a9d59a706b /plugins/MirLua/src/stdafx.h | |
parent | 9c4510cd09c2fb34eeb1cefe58d70a7fb75e5ad4 (diff) |
MirLua: added m_msg_buttonsbar module
git-svn-id: http://svn.miranda-ng.org/main/trunk@14136 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 eea0740b9b..b26ae3db4e 100644 --- a/plugins/MirLua/src/stdafx.h +++ b/plugins/MirLua/src/stdafx.h @@ -14,6 +14,7 @@ #include <m_folders.h>
#include <m_toptoolbar.h>
+#include <m_msg_buttonsbar.h>
extern "C"
{
@@ -50,6 +51,9 @@ LUAMOD_API int (luaopen_m_icolib)(lua_State *L); #define MLUA_GENMENU "m_genmenu"
LUAMOD_API int (luaopen_m_genmenu)(lua_State *L);
+#define MLUA_MSGBUTTONSBAR "m_msg_buttonsbar"
+LUAMOD_API int (luaopen_m_msg_buttonsbar)(lua_State *L);
+
#define MLUA_TOPTOOLBAR "m_toptoolbar"
LUAMOD_API int (luaopen_m_toptoolbar)(lua_State *L);
|