blob: 0d27745908474b01f44623fcfa2c62c6479fa903 (
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
27
28
29
30
31
32
33
34
35
|
#ifndef _PING_UTILS
#define _PING_UTILS
#pragma warning( disable : 4786 )
#include "pingthread.h" // for mainthread, for popup
//#include "icmp.h"
#include "rawping.h"
#include "icmp.h"
#include "options.h"
void __stdcall ShowPopup( const char* line1, const char* line2, int flags );
INT_PTR PluginPing(WPARAM wParam,LPARAM lParam);
void Lock(CRITICAL_SECTION *cs, char *lab);
void Unlock(CRITICAL_SECTION *cs);
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
|