mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-08 05:51:09 +00:00
6535283ff1
use critical sections in other places besides the OPL player. SVN r896 (trunk)
42 lines
697 B
C++
42 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
|