]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/thread_private.h
Move most platform-specific code into overlay directories
[libs/core.git] / source / core / thread_private.h
diff --git a/source/core/thread_private.h b/source/core/thread_private.h
new file mode 100644 (file)
index 0000000..f64c582
--- /dev/null
@@ -0,0 +1,19 @@
+#ifndef MSP_CORE_THREAD_PRIVATE_H_
+#define MSP_CORE_THREAD_PRIVATE_H_
+
+#include "thread_platform.h"
+
+namespace Msp {
+
+struct Thread::Private
+{
+       ThreadHandle handle;
+
+       Private(): handle(0) { }
+
+       static ThreadReturn THREAD_CALL main_wrapper(void *);
+};
+
+} // namespace Msp
+
+#endif