summaryrefslogtreecommitdiff
path: root/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'process.h')
-rw-r--r--process.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/process.h b/process.h
new file mode 100644
index 0000000..7f0b5ea
--- /dev/null
+++ b/process.h
@@ -0,0 +1,16 @@
+/*
+ * process.h
+ *
+ * Temporary stand-in for Win32 process.h
+ *
+ */
+
+HANDLE _beginthreadex(LPSECURITY_ATTRIBUTES security,
+ DWORD stack,
+ unsigned (* start_routine)(void *),
+ LPVOID param,
+ DWORD flags,
+ LPDWORD threadID);
+
+VOID _endthreadex(DWORD);
+