mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-08 05:51:26 +00:00
43 lines
697 B
C
43 lines
697 B
C
|
// Wraps a Windows critical section object.
|
||
|
|
||
|
#ifndef CRITSEC_H
|
||
|
#define CRITSEC_H
|
||
|
|
||
|
#ifndef _WINNT_
|
||
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#include <windows.h>
|
||
|
#define USE_WINDOWS_DWORD
|
||
|
#endif
|
||
|
|
||
|
class FCriticalSection
|
||
|
{
|
||
|
public:
|
||
|
FCriticalSection()
|
||
|
{
|
||
|
InitializeCriticalSection(&CritSec);
|
||
|
}
|
||
|
~FCriticalSection()
|
||
|
{
|
||
|
DeleteCriticalSection(&CritSec);
|
||
|
}
|
||
|
void Enter()
|
||
|
{
|
||
|
EnterCriticalSection(&CritSec);
|
||
|
}
|
||
|
void Leave()
|
||
|
{
|
||
|
LeaveCriticalSection(&CritSec);
|
||
|
}
|
||
|
#if 0
|
||
|
// SDL has no equivalent functionality, so better not use it on Windows.
|
||
|
bool TryEnter()
|
||
|
{
|
||
|
return TryEnterCriticalSection(&CritSec) != 0;
|
||
|
}
|
||
|
#endif
|
||
|
private:
|
||
|
CRITICAL_SECTION CritSec;
|
||
|
};
|
||
|
|
||
|
#endif
|