diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-12-06 20:06:30 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-12-06 20:06:30 +0000 |
commit | 6d72639c7de652d08a2c9154b4eefc96e3a49b6f (patch) | |
tree | 16fb7c69f810a3ea8205c8d43e0243ef8ab470c9 /plugins/MirLua/src/stdafx.h | |
parent | 8e23843410f7083e47dd46481cd84c8459ebbba4 (diff) |
MirLua: added sound module
git-svn-id: http://svn.miranda-ng.org/main/trunk@15823 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/stdafx.h')
-rw-r--r-- | plugins/MirLua/src/stdafx.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/MirLua/src/stdafx.h b/plugins/MirLua/src/stdafx.h index 1c1677a2bd..3eb5c82241 100644 --- a/plugins/MirLua/src/stdafx.h +++ b/plugins/MirLua/src/stdafx.h @@ -22,6 +22,7 @@ #include <m_clist.h>
#include <m_hotkeys.h>
#include <m_icolib.h>
+#include <m_skin.h>
#include <m_message.h>
#include <m_chat.h>
#include <m_protocols.h>
@@ -72,8 +73,6 @@ extern HANDLE hNetlib; #define MLUA_CORE "m_core"
LUAMOD_API int (luaopen_m_core)(lua_State *L);
-#include "m_schedule.h"
-
#define MLUA_CLIST "m_clist"
LUAMOD_API int (luaopen_m_clist)(lua_State *L);
@@ -98,6 +97,11 @@ LUAMOD_API int (luaopen_m_popup)(lua_State *L); #include "m_protocols.h"
+#include "m_schedule.h"
+
+#define MLUA_SOUND "m_sound"
+LUAMOD_API int (luaopen_m_sound)(lua_State *L);
+
#include "m_toptoolbar.h"
#define MLUA_VARIABLES "m_variables"
|