summaryrefslogtreecommitdiff
path: root/plugins/Ping/src/utils.h
blob: d084a4ae9a15c9a12f1bc8660b40bccc5acef9b6 (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
#ifndef _PING_UTILS
#define _PING_UTILS

void __stdcall	ShowPopup(wchar_t *line1, wchar_t *line2, int flags);

INT_PTR PluginPing(WPARAM wParam, LPARAM lParam);

INT_PTR PingDisableAll(WPARAM wParam, LPARAM lParam);
INT_PTR PingEnableAll(WPARAM wParam, LPARAM lParam);

INT_PTR ToggleEnabled(WPARAM wParam, LPARAM lParam);

INT_PTR DblClick(WPARAM wParam, LPARAM lParam);

INT_PTR EditContact(WPARAM wParam, LPARAM lParam);
// read in addresses from old pingplug
void import_ping_addresses();

// use icolib if possible
void InitUtils();
extern HICON hIconResponding, hIconNotResponding, hIconTesting, hIconDisabled;


#endif