Files
m2dev-client-src/src/EterLib/Mutex.h
d1str4ught 4be475f111 init
2025-08-18 19:46:48 +02:00

19 lines
214 B
C++

#ifndef __INC_ETERLIB_MUTEX_H__
#define __INC_ETERLIB_MUTEX_H__
class Mutex
{
public:
Mutex();
~Mutex();
void Lock();
void Unlock();
bool Trylock();
private:
CRITICAL_SECTION lock;
};
#endif