summaryrefslogtreecommitdiff
path: root/plugins/Ping/options.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-11-28 17:40:59 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-11-28 17:40:59 +0000
commit6e7708ae1760c85840f2e30e9af7221d2b149905 (patch)
tree05cb1aea34b3ecfd3b3729840766db1b722b7182 /plugins/Ping/options.h
parent5e9e63c45e37917ffb0acd83832d0d8f99d01883 (diff)
- Ping: folder rename
git-svn-id: http://svn.miranda-ng.org/main/trunk@2541 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Ping/options.h')
-rw-r--r--plugins/Ping/options.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/plugins/Ping/options.h b/plugins/Ping/options.h
new file mode 100644
index 0000000000..1963649bfb
--- /dev/null
+++ b/plugins/Ping/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