summaryrefslogtreecommitdiff
path: root/plugins/Ping/options.h
blob: 1963649bfb6af334400c73d1b0abb7bd53c2c89f (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
#ifndef _PING_OPTIONS
#define _PING_OPTIONS

#include "pinglist.h"
#include "utils.h"
#include "icmp.h"
#include "pingthread.h"

#include "resource.h"

// wake event for ping thread
extern HANDLE hWakeEvent;

extern PingOptions options;
extern PINGADDRESS add_edit_addr;

INT_PTR CALLBACK DlgProcDestEdit(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);

int PingOptInit(WPARAM wParam,LPARAM lParam);

BOOL Edit(HWND hwnd, PINGADDRESS &addr);

void LoadOptions();
void SaveOptions();

#endif