mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
chore(thread): add missing windows stub for SThread::Create
This commit is contained in:
parent
c4eafc728d
commit
800c1cc245
1 changed files with 1 additions and 0 deletions
|
|
@ -4,6 +4,7 @@
|
||||||
int32_t SThread::Create(uint32_t (*threadProc)(void*), void* param, SThread& thread, char* threadName, uint32_t a5) {
|
int32_t SThread::Create(uint32_t (*threadProc)(void*), void* param, SThread& thread, char* threadName, uint32_t a5) {
|
||||||
#if defined(WHOA_PLATFORM_WIN)
|
#if defined(WHOA_PLATFORM_WIN)
|
||||||
// TODO implement
|
// TODO implement
|
||||||
|
return 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(WHOA_PLATFORM_MAC) || defined(WHOA_PLATFORM_LINUX)
|
#if defined(WHOA_PLATFORM_MAC) || defined(WHOA_PLATFORM_LINUX)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue