blob: 3b8dfbf2b6ec7bef0bfba51a6da4ddf79e084f28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "stdafx.h"
static IconItem iconList[] =
{
{ LPGEN("Disable"), "remove", IDI_HREMOVE },
{ LPGEN("Enable"), "keep", IDI_HKEEP },
{ LPGEN("Clear"), "clear", IDI_HCLEAR },
};
void InitIcons()
{
g_plugin.registerIcon(LPGEN("No History"), iconList, MODULENAME);
}
|