winamp/Src/pfc/critsec.h

14 lines
386 B
C
Raw Permalink Normal View History

2024-09-24 13:54:57 +01:00
#ifndef _PFC_CRITSEC_H_
#define _PFC_CRITSEC_H_
class critical_section : public CRITICAL_SECTION
{
public:
inline void enter() {EnterCriticalSection(this);}
inline void leave() {LeaveCriticalSection(this);}
critical_section() {InitializeCriticalSection(this);}
~critical_section() {DeleteCriticalSection(this);}
//BOOL TryEnter() {return TryEnterCriticalSection(this);}
};
#endif