summaryrefslogtreecommitdiff
path: root/plugins/Ping/src/menu.cpp
blob: 564d2ee8bfe3302e829b30d97366425368d558ef (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
#include "common.h"

HANDLE hMenuDisable, hMenuGraph, hMenuEdit;
HANDLE hEventMenuBuild;

void InitMenus()
{
	// main menu
	CLISTMENUITEM mi = { 0 };
	mi.flags = CMIF_TCHAR;
	// mi.popupPosition = 500099900; !!!!!!!!!!!!!!!!!!!!
	mi.ptszPopupName = LPGENT("Ping");
	mi.position = 2000060000;
	mi.hIcon = hIconResponding;
	mi.ptszName = LPGENT("Enable all pings");
	mi.pszService = PLUG "/EnableAll";
	Menu_AddMainMenuItem(&mi);

	mi.position = 2000060001;
	mi.hIcon = hIconDisabled;
	mi.ptszName = LPGENT("Disable all pings");
	mi.pszService = PLUG "/DisableAll";
	Menu_AddMainMenuItem(&mi);
}