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

HANDLE hMenuDisable, hMenuGraph, hMenuEdit;
HANDLE hEventMenuBuild;

void InitMenus()
{
	// main menu
	CLISTMENUITEM mi = { sizeof(mi) };
	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.popupPosition = 500299901;
	mi.position = 2000060001;
	mi.popupPosition = 0;
	mi.hIcon = hIconDisabled;
	mi.ptszName = LPGENT("Disable all pings");
	mi.pszService = PLUG "/DisableAll";
	Menu_AddMainMenuItem(&mi);
}