summaryrefslogtreecommitdiff
path: root/backend/Header.h
diff options
context:
space:
mode:
Diffstat (limited to 'backend/Header.h')
-rw-r--r--backend/Header.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/backend/Header.h b/backend/Header.h
deleted file mode 100644
index 5282066..0000000
--- a/backend/Header.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#pragma once
-
-#ifdef WIN32
-
-#include <Windows.h>
-
-#else
-// TODO: Support Linux threads
-#include <pthread.h>
-#endif
-
-struct ThreadInstance {
- DWORD mThreadId;
- HANDLE mThreadHandle;
-};
-
-bool initThreadInstance(ThreadInstance* instance) {
- instance->mThreadHandle = CreateThread(NULL, 0,, NULL, 0, NULL);
-}
-
-struct ThreadPool {
-
-}; \ No newline at end of file