diff options
author | aunsane <aunsane@gmail.com> | 2018-05-20 21:10:10 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2018-05-20 21:34:31 +0300 |
commit | a955d18f62f335f84e0926f351eb85d78224cba6 (patch) | |
tree | 7bd4d30040ec32bba5949dd2245cb68617fb4192 /plugins/MirLua/src/modules.h | |
parent | 46363eef857b69761f1d6d28da5a53a954f76900 (diff) |
MirLua: project reordering
Diffstat (limited to 'plugins/MirLua/src/modules.h')
-rw-r--r-- | plugins/MirLua/src/modules.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/plugins/MirLua/src/modules.h b/plugins/MirLua/src/modules.h new file mode 100644 index 0000000000..7aa4402efb --- /dev/null +++ b/plugins/MirLua/src/modules.h @@ -0,0 +1,44 @@ +#pragma once + +#define MLUA_CORE "m_core" +LUAMOD_API int (luaopen_m_core)(lua_State *L); + +#define MLUA_CHAT "m_chat" +LUAMOD_API int (luaopen_m_chat)(lua_State *L); + +#define MLUA_CLIST "m_clist" +LUAMOD_API int (luaopen_m_clist)(lua_State *L); + +#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); + +#define MLUA_GENMENU "m_genmenu" +LUAMOD_API int (luaopen_m_genmenu)(lua_State *L); + +#define MLUA_HTTP "m_http" +LUAMOD_API int (luaopen_m_http)(lua_State *L); + +#define MLUA_HOTKEYS "m_hotkeys" +LUAMOD_API int (luaopen_m_hotkeys)(lua_State *L); + +#define MLUA_JSON "m_json" +LUAMOD_API int (luaopen_m_json)(lua_State *L); + +#define MLUA_MESSAGE "m_message" +LUAMOD_API int (luaopen_m_message)(lua_State *L); + +#define MLUA_OPTIONS "m_options" +LUAMOD_API int (luaopen_m_options)(lua_State *L); + +#define MLUA_PROTOCOLS "m_protocols" +#define MT_PROTOACCOUNT "PROTOACCOUNT" +LUAMOD_API int (luaopen_m_protocols)(lua_State *L); + +#define MLUA_SOUNDS "m_sounds" +LUAMOD_API int (luaopen_m_sounds)(lua_State *L); + +#define MLUA_SRMM "m_srmm" +LUAMOD_API int (luaopen_m_srmm)(lua_State *L);
\ No newline at end of file |