摘要: #include "stdafx.h"#include "windows.h"class CLock{private: CRITICAL_SECTION m_section;public: CLock(void) { InitializeCriticalSection(&m_section); } ~CLock(void) { DeleteCriticalSection(&m_section); } void lock() { EnterCriticalSection(&m_section); } void unLock() { 阅读全文
posted @ 2012-12-17 21:41 ahuo 阅读(1113) 评论(0) 推荐(0) 编辑