From d0c7ef4f48cdf9f1ad622fc84d10257c21bb91db Mon Sep 17 00:00:00 2001
From: George Hazan <ghazan@miranda.im>
Date: Fri, 12 Jul 2019 13:48:39 +0300
Subject: MirLua: interface for extra icons added

---
 plugins/MirLua/src/modules.h | 34 +++++++++++++++++++---------------
 1 file changed, 19 insertions(+), 15 deletions(-)

(limited to 'plugins/MirLua/src/modules.h')

diff --git a/plugins/MirLua/src/modules.h b/plugins/MirLua/src/modules.h
index 7aa4402efb..a2add45afb 100644
--- a/plugins/MirLua/src/modules.h
+++ b/plugins/MirLua/src/modules.h
@@ -1,44 +1,48 @@
 #pragma once
 
-#define MLUA_CORE	"m_core"
+#define MLUA_CORE "m_core"
 LUAMOD_API int (luaopen_m_core)(lua_State *L);
 
-#define MLUA_CHAT	"m_chat"
+#define MLUA_CHAT "m_chat"
 LUAMOD_API int (luaopen_m_chat)(lua_State *L);
 
-#define MLUA_CLIST	"m_clist"
+#define MLUA_CLIST "m_clist"
 LUAMOD_API int (luaopen_m_clist)(lua_State *L);
 
-#define MLUA_DATABASE	"m_database"
+#define MLUA_DATABASE "m_database"
 LUAMOD_API int (luaopen_m_database)(lua_State *L);
 
-#define MLUA_ICOLIB	"m_icolib"
+#define MLUA_EXTRAICON "m_extraIcon"
+LUAMOD_API int (luaopen_m_extraIcon)(lua_State *L);
+
+#define MLUA_ICOLIB "m_icolib"
 LUAMOD_API int (luaopen_m_icolib)(lua_State *L);
 
-#define MLUA_GENMENU	"m_genmenu"
+#define MLUA_GENMENU "m_genmenu"
 LUAMOD_API int (luaopen_m_genmenu)(lua_State *L);
 
-#define MLUA_HTTP	"m_http"
+#define MLUA_HTTP "m_http"
 LUAMOD_API int (luaopen_m_http)(lua_State *L);
 
-#define MLUA_HOTKEYS	"m_hotkeys"
+#define MLUA_HOTKEYS "m_hotkeys"
 LUAMOD_API int (luaopen_m_hotkeys)(lua_State *L);
 
-#define MLUA_JSON	"m_json"
+#define MLUA_JSON "m_json"
 LUAMOD_API int (luaopen_m_json)(lua_State *L);
 
-#define MLUA_MESSAGE	"m_message"
+#define MLUA_MESSAGE "m_message"
 LUAMOD_API int (luaopen_m_message)(lua_State *L);
 
-#define MLUA_OPTIONS	"m_options"
+#define MLUA_OPTIONS "m_options"
 LUAMOD_API int (luaopen_m_options)(lua_State *L);
 
-#define MLUA_PROTOCOLS	"m_protocols"
 #define MT_PROTOACCOUNT "PROTOACCOUNT"
+
+#define MLUA_PROTOCOLS "m_protocols"
 LUAMOD_API int (luaopen_m_protocols)(lua_State *L);
 
-#define MLUA_SOUNDS	"m_sounds"
+#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
+#define MLUA_SRMM "m_srmm"
+LUAMOD_API int (luaopen_m_srmm)(lua_State *L);
-- 
cgit v1.2.3