summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/mlua_icons.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MirLua/src/mlua_icons.cpp')
-rw-r--r--plugins/MirLua/src/mlua_icons.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/MirLua/src/mlua_icons.cpp b/plugins/MirLua/src/mlua_icons.cpp
new file mode 100644
index 0000000000..7b0e9c37f3
--- /dev/null
+++ b/plugins/MirLua/src/mlua_icons.cpp
@@ -0,0 +1,31 @@
+#include "stdafx.h"
+
+IconItemT Icons[] =
+{
+ { LPGENT("Script"), "script", IDI_SCRIPT },
+ { LPGENT("Open"), "open", IDI_OPEN },
+ { LPGENT("Reload") , "reload", IDI_RELOAD },
+};
+
+void InitIcons()
+{
+ Icon_RegisterT(g_hInstance, LPGENT(MODULE), Icons, _countof(Icons), MODULE);
+}
+
+HICON GetIcon(int iconId)
+{
+ for (size_t i = 0; i < _countof(Icons); i++)
+ if (Icons[i].defIconID == iconId)
+ return IcoLib_GetIconByHandle(Icons[i].hIcolib);
+
+ return NULL;
+}
+
+HANDLE GetIconHandle(int iconId)
+{
+ for (size_t i = 0; i < _countof(Icons); i++)
+ if (Icons[i].defIconID == iconId)
+ return Icons[i].hIcolib;
+
+ return NULL;
+} \ No newline at end of file