summary refs log tree commit diff stats
path: root/plugins/dns/thread.h
diff options
context:
space:
mode:
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);