summaryrefslogtreecommitdiff
path: root/ping_protocol/options.h
blob: 0360b471fc641314f662188a5e9e93bcf30f2a46 (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