isle-portable/LEGO1/mxcriticalsection.h
2023-06-12 18:05:43 +02:00

12 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