summaryrefslogtreecommitdiff
path: root/plugins/Ping/src/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Ping/src/options.h')
-rw-r--r--plugins/Ping/src/options.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/plugins/Ping/src/options.h b/plugins/Ping/src/options.h
new file mode 100644
index 0000000000..1963649bfb
--- /dev/null
+++ b/plugins/Ping/src/options.h
@@ -0,0 +1,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