feat(thread): implement SCreateThread for windows

This commit is contained in:
fallenoak 2022-12-29 14:46:59 -06:00 committed by GitHub
parent b5cef8cbee
commit 968bb5d3b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 80 additions and 2 deletions

View file

@ -0,0 +1,6 @@
#include "storm/thread/S_Thread.hpp"
DWORD S_Thread::s_SLaunchThread(void* threadParam) {
// TODO
return 0;
}