summaryrefslogtreecommitdiff
path: root/source/libs/asura-lib-utils/threading/thread_impl_win32.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/libs/asura-lib-utils/threading/thread_impl_win32.h')
-rw-r--r--source/libs/asura-lib-utils/threading/thread_impl_win32.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/source/libs/asura-lib-utils/threading/thread_impl_win32.h b/source/libs/asura-lib-utils/threading/thread_impl_win32.h
new file mode 100644
index 0000000..3dd2a8e
--- /dev/null
+++ b/source/libs/asura-lib-utils/threading/thread_impl_win32.h
@@ -0,0 +1,35 @@
+#ifndef __ASURA_THREAD_WIN32_H__
+#define __ASURA_THREAD_WIN32_H__
+
+#include "../utils_config.h"
+
+#if ASURA_THREAD_WIN32
+
+#include <windows.h>
+#include "thread.h"
+
+namespace AsuraEngine
+{
+ namespace Threading
+ {
+
+ ///
+ /// Threadwin32ʵ֡
+ ///
+ class ThreadImplWin32 : public ThreadImpl
+ {
+ public:
+
+
+ private:
+
+ HANDLE mHandle;
+
+ };
+
+ }
+}
+
+#endif // #if ASURA_THREAD_WIN32
+
+#endif \ No newline at end of file