mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
18 lines
288 B
C
18 lines
288 B
C
|
#ifndef MXAUTOLOCK_H
|
||
|
#define MXAUTOLOCK_H
|
||
|
|
||
|
#include "mxcriticalsection.h"
|
||
|
|
||
|
#define AUTOLOCK(CS) MxAutoLock lock(&CS)
|
||
|
|
||
|
class MxAutoLock {
|
||
|
public:
|
||
|
MxAutoLock(MxCriticalSection* p_criticalSection);
|
||
|
~MxAutoLock();
|
||
|
|
||
|
private:
|
||
|
MxCriticalSection* m_criticalSection;
|
||
|
};
|
||
|
|
||
|
#endif // MXAUTOLOCK_H
|