Files
CgeThread/win32/Internal.h
Mikhail Romanko 04e02490b7
Some checks failed
CI / build-and-analyze (push) Failing after 1m18s
Initial commit
2026-08-09 12:55:16 +03:00

29 lines
405 B
C

#ifndef CGE_THREAD_INTERNAL_H
#define CGE_THREAD_INTERNAL_H
#define WIN32_LEAN_AND_MEAN
#include "../CgeThread.h"
#include <windows.h>
struct CgeCondition {
CONDITION_VARIABLE handle;
};
struct CgeMutex {
CRITICAL_SECTION handle;
};
struct CgeSemaphore {
HANDLE handle;
};
struct CgeThread {
HANDLE handle;
};
struct CgeTss {
DWORD handle;
};
#endif /* CGE_THREAD_INTERNAL_H */