summary refs log tree commit diff stats
path: root/plugins/dns/thread.h
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2014-01-08 01:32:28 -0500
committerTingPing <tingping@tingping.se>2014-01-08 01:32:28 -0500
commit20d26aea943d8de63a61cb92f506dd51b934fe36 (patch)
treebb9f0377978fcc400e92a07f6ff53b1ec862199e /plugins/dns/thread.h
parent9cba22c38ab58e7e54258ce012a5e296f81f3f7b (diff)
Rewrite dns command
- Cross platform
- Doesn't depend on external tools
Diffstat (limited to 'plugins/dns/thread.h')
-rw-r--r--plugins/dns/thread.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/plugins/dns/thread.h b/plugins/dns/thread.h
deleted file mode 100644
index 1ec6932d..00000000
--- a/plugins/dns/thread.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <windows.h>
-
-typedef struct
-{
-	DWORD threadid;
-	int pipe_fd[2];
-	void *userdata;
-} thread;
-
-thread *thread_new (void);
-int thread_start (thread *th, void *(*start_routine)(void *), void *arg);