mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
feat(thread): implement SThread::Create for windows
This commit is contained in:
parent
4dbfb0b3be
commit
db87a5d782
7 changed files with 41 additions and 6 deletions
6
storm/thread/win/Thread.cpp
Normal file
6
storm/thread/win/Thread.cpp
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue