diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-06-11 00:44:38 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-06-11 00:44:38 +0000 |
commit | a15cfbf2d3abc5a66b394e2da551828d39994d51 (patch) | |
tree | 98bd51cf9f022484a38bd749cbb9f8a50939c516 /plugins/MirLua/src/stdafx.h | |
parent | 8f2006898a4cf2e958df20b20e90de2ec762d40b (diff) |
MirLua:
- added m_database module
- added examples
git-svn-id: http://svn.miranda-ng.org/main/trunk@14111 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 6d206f7644..f334968fb3 100644 --- a/plugins/MirLua/src/stdafx.h +++ b/plugins/MirLua/src/stdafx.h @@ -8,6 +8,7 @@ #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>
@@ -38,6 +39,9 @@ extern HINSTANCE g_hInstance; #define CUSTOM_SCRIPTS_PATHT MIRANDA_USERDATA "\\Scripts"
#endif
+#define MLUA_DATABASE "m_database"
+LUAMOD_API int (luaopen_m_database)(lua_State *L);
+
#define MLUA_ICOLIB "m_icolib"
LUAMOD_API int (luaopen_m_icolib)(lua_State *L);
|