📄 mutex.cpp
字号:
// Mutex.cpp: implementation of the CMutex class.
//
//////////////////////////////////////////////////////////////////////
#include "Mutex.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CMutex::CMutex()
{
m_hMutex = CreateMutex(NULL, FALSE, NULL);
}
CMutex::~CMutex()
{
CloseHandle(m_hMutex);
}
void CMutex::LockMutex()
{
WaitForSingleObject(m_hMutex, INFINITE);
}
void CMutex::UnlockMutex()
{
ReleaseMutex(m_hMutex);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -