geode/loader/dobby/source/UserMode/Thread/platform-thread-windows.cc
2022-07-30 19:24:03 +03:00

25 lines
433 B
C++

#include "PlatformThread.h"
using namespace zz;
int OSThread::GetCurrentProcessId() {
return 0;
}
int OSThread::GetCurrentThreadId() {
return 0;
}
OSThread::LocalStorageKey OSThread::CreateThreadLocalKey() {
return 0;
}
void OSThread::DeleteThreadLocalKey(LocalStorageKey key) {
}
void *OSThread::GetThreadLocal(LocalStorageKey key) {
return NULL;
}
void OSThread::SetThreadLocal(LocalStorageKey key, void *value) {
}