mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
Introduce clang-format (#240)
This commit is contained in:

committed by
GitHub

parent
e928fc9425
commit
b449da1fa3
@@ -3,18 +3,17 @@
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
class MxCriticalSection
|
||||
{
|
||||
class MxCriticalSection {
|
||||
public:
|
||||
__declspec(dllexport) MxCriticalSection();
|
||||
__declspec(dllexport) ~MxCriticalSection();
|
||||
__declspec(dllexport) static void SetDoMutex();
|
||||
void Enter();
|
||||
void Leave();
|
||||
__declspec(dllexport) MxCriticalSection();
|
||||
__declspec(dllexport) ~MxCriticalSection();
|
||||
__declspec(dllexport) static void SetDoMutex();
|
||||
void Enter();
|
||||
void Leave();
|
||||
|
||||
private:
|
||||
CRITICAL_SECTION m_criticalSection;
|
||||
HANDLE m_mutex;
|
||||
CRITICAL_SECTION m_criticalSection;
|
||||
HANDLE m_mutex;
|
||||
};
|
||||
|
||||
#endif // MXCRITICALSECTION_H
|
||||
|
Reference in New Issue
Block a user