1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "stdafx.h"
static IconItem iconList[] =
{
// toolbar
{ LPGEN("Popups are enabled"), ICO_TB_POPUP_ON, IDI_POPUP },
{ LPGEN("Popups are disabled"), ICO_TB_POPUP_OFF, IDI_NOPOPUP },
// common
{ LPGEN("Popups are enabled"), ICO_POPUP_ON, IDI_POPUP },
{ LPGEN("Popups are disabled"), ICO_POPUP_OFF, IDI_NOPOPUP },
{ LPGEN("Popup History"), ICO_HISTORY, IDI_HISTORY },
};
void InitIcons()
{
Icon_Register(hInst, SECT_TOLBAR, iconList, 2);
Icon_Register(hInst, SECT_POPUP, iconList+2, 3);
}
|