blob: b4b85743449bd62fbb16c3a5c06b1919027dcb36 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 | #include "stdafx.h"
static IconItem iconList[] =
{
	{	LPGEN("Protocol icon"),		"main",		IDI_DROPBOX	},
	{	LPGEN("Upload file(s)"),	"upload",	IDI_UPLOAD	}
};
void InitializeIcons()
{
	Icon_Register(g_hInstance, "Protocols/" MODULE, iconList, _countof(iconList), MODULE);
}
HANDLE GetIconHandleByName(const char *name)
{
	for (size_t i = 0; i < _countof(iconList); i++)
		if (mir_strcmpi(iconList[i].szName, name) == 0)
			return iconList[i].hIcolib;
	return NULL;
}
HICON LoadIconEx(int iconId, bool big)
{
	for (int i = 0; i < _countof(iconList); i++)
		if (iconList[i].defIconID == iconId)
			return IcoLib_GetIconByHandle(iconList[i].hIcolib, big);
	return NULL;
}
 |