This commit is contained in:
coco
2026-07-03 16:05:30 +08:00
commit df489d5640
1101 changed files with 779140 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef INCLUNDE_CAUTOLOCK_20181107
#define INCLUNDE_CAUTOLOCK_20181107
#pragma once
#include <Windows.h>
class CAutoLock
{
public:
CAutoLock(CRITICAL_SECTION *pCs);
~CAutoLock();
private:
CRITICAL_SECTION* m_pCs;
};
#endif