chore(thread): add missing windows stub for SThread::Create

This commit is contained in:
fallenoak 2020-11-30 23:41:46 -06:00
parent c4eafc728d
commit 800c1cc245
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D

View file

@ -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)