blob: ba92aaa8f216221b9c601fdd2c06910628b94b49 (
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, SIZEOF(iconList), MODULE);
}
HANDLE GetIconHandleByName(const char *name)
{
for (size_t i = 0; i < SIZEOF(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 < SIZEOF(iconList); i++)
if (iconList[i].defIconID == iconId)
return IcoLib_GetIconByHandle(iconList[i].hIcolib, big);
return NULL;
}
|