mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
13 lines
266 B
C
13 lines
266 B
C
|
#ifndef MXCRITICALSECTION_H
|
||
|
#define MXCRITICALSECTION_H
|
||
|
|
||
|
class MxCriticalSection
|
||
|
{
|
||
|
public:
|
||
|
__declspec(dllexport) MxCriticalSection();
|
||
|
__declspec(dllexport) ~MxCriticalSection();
|
||
|
__declspec(dllexport) static void SetDoMutex();
|
||
|
};
|
||
|
|
||
|
#endif // MXCRITICALSECTION_H
|