mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
7 lines
209 B
C++
7 lines
209 B
C++
|
|
#include "storm/Thread.hpp"
|
||
|
|
|
||
|
|
void* SCreateThread(uint32_t (*threadProc)(void*), void* threadParam, void* a3, SThread* syncObject, const char* threadName) {
|
||
|
|
// TODO
|
||
|
|
return reinterpret_cast<void*>(1);
|
||
|
|
}
|