]> git.tdb.fi Git - libs/core.git/blob - source/core/thread_private.h
Miscellaneous fixes
[libs/core.git] / source / core / thread_private.h
1 #ifndef MSP_CORE_THREAD_PRIVATE_H_
2 #define MSP_CORE_THREAD_PRIVATE_H_
3
4 #include "thread.h"
5 #include "thread_platform.h"
6
7 namespace Msp {
8
9 struct Thread::Private
10 {
11         ThreadHandle handle;
12
13         Private(): handle(0) { }
14
15         static ThreadReturn THREAD_CALL main_wrapper(void *);
16 };
17
18 } // namespace Msp
19
20 #endif