summary refs log tree commit diff stats
path: root/plugins/dns/thread.h
diff options
context:
space:
mode:
authorBerke Viktor <berkeviktor@aol.com>2012-01-20 05:43:13 +0100
committerBerke Viktor <berkeviktor@aol.com>2012-01-20 05:43:13 +0100
commitbfee90f11c9766808a0c7decccc3289d4764019f (patch)
treeebdb69373da6658e5af2e49fb2acebc35e0b748a /plugins/dns/thread.h
parent8f4987a33c7042c3ddb72619bbd1f6f787ee751d (diff)
add DNS plugin
Diffstat (limited to 'plugins/dns/thread.h')
-rw-r--r--plugins/dns/thread.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/dns/thread.h b/plugins/dns/thread.h
new file mode 100644
index 00000000..1ec6932d
--- /dev/null
+++ b/plugins/dns/thread.h
@@ -0,0 +1,11 @@
+#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);