diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-06-16 15:15:01 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-06-16 15:15:01 +0000 |
commit | 6dc20e70f308daee742372a7978c1f65668186f3 (patch) | |
tree | 232e56b9d1c8766221902a946b2cdc63355e0873 /plugins/MirLua/src/stdafx.h | |
parent | c9700c210aa7252faa78af4fbd39a6e0de9f1642 (diff) |
MirLua:
- added variables module
- strings passed through WPARAM/LPARAM should be ansi
git-svn-id: http://svn.miranda-ng.org/main/trunk@14207 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 26296fedc8..778b6a1185 100644 --- a/plugins/MirLua/src/stdafx.h +++ b/plugins/MirLua/src/stdafx.h @@ -19,6 +19,7 @@ #include <m_folders.h>
#include <m_toptoolbar.h>
#include <m_msg_buttonsbar.h>
+#include <m_variables.h>
extern "C"
{
@@ -65,4 +66,7 @@ LUAMOD_API int (luaopen_m_msg_buttonsbar)(lua_State *L); #define MLUA_TOPTOOLBAR "m_toptoolbar"
LUAMOD_API int (luaopen_m_toptoolbar)(lua_State *L);
+#define MLUA_VARIABLES "m_variables"
+LUAMOD_API int (luaopen_m_variables)(lua_State *L);
+
#endif //_COMMON_H_
|