]> git.tdb.fi Git - libs/core.git/blob - source/core/thread_private.h
Add a few missing default initializers
[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