diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-06-12 10:42:43 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-06-12 10:42:43 +0000 |
commit | 297a4ecf64fd16ac6b6616e6938ca86554f46c42 (patch) | |
tree | cb5a12e4901ff6aba2077a05862ff61c51ff4fe8 /plugins/MirLua/src/stdafx.h | |
parent | 6d73d5c2980507e6823bb629aa2ce8d410989b8a (diff) |
MirLua: added toptoolbar module
git-svn-id: http://svn.miranda-ng.org/main/trunk@14132 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/stdafx.h')
-rw-r--r-- | plugins/MirLua/src/stdafx.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/MirLua/src/stdafx.h b/plugins/MirLua/src/stdafx.h index f334968fb3..eea0740b9b 100644 --- a/plugins/MirLua/src/stdafx.h +++ b/plugins/MirLua/src/stdafx.h @@ -7,12 +7,14 @@ #include <m_core.h>
#include <m_utils.h>
#include <m_langpack.h>
-#include <m_folders.h>
#include <m_database.h>
#include <m_clist.h>
#include <m_genmenu.h>
#include <m_icolib.h>
+#include <m_folders.h>
+#include <m_toptoolbar.h>
+
extern "C"
{
#include "lua\lua.h"
@@ -48,4 +50,7 @@ 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_TOPTOOLBAR "m_toptoolbar"
+LUAMOD_API int (luaopen_m_toptoolbar)(lua_State *L);
+
#endif //_COMMON_H_
|