]> git.tdb.fi Git - libs/core.git/blob - source/core/thread_private.h
f133d6025fcb41e4f30c8b9ed35e62edbd35991a
[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 = 0;
12
13         static ThreadReturn THREAD_CALL main_wrapper(void *);
14 };
15
16 } // namespace Msp
17
18 #endif