1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-20 04:39:29 +08:00
Files
Alas/blcrack/cracker/Dobby/source/Backend/UserMode/Thread/platform-thread-windows.cc
2025-11-01 00:23:46 +08:00

26 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) {
}