blob: 522d1d628a3612521299cc4189f9fecbc657a011 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef _PING_OPTIONS
#define _PING_OPTIONS
#include "common.h"
#include "pinglist.h"
#include "utils.h"
#include "icmp.h"
#include "resource.h"
// wake event for ping thread
extern HANDLE hWakeEvent;
extern PingOptions options;
extern PINGADDRESS add_edit_addr;
BOOL CALLBACK DlgProcDestEdit(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
int PingOptInit(WPARAM wParam,LPARAM lParam);
void LoadOptions();
void SaveOptions();
#endif
|