x2t (not complete)

This commit is contained in:
Oleg Korshul
2018-04-17 19:10:48 +03:00
parent f57b28cd24
commit 8d750adb7b
85 changed files with 1487 additions and 535 deletions

View File

@ -52,6 +52,19 @@ namespace NSCriticalSection
void Enter();
void Leave();
};
class KERNEL_DECL CRITICAL_SECTION_SMART
{
private:
CRITICAL_SECTION* m_pCS;
public:
CRITICAL_SECTION_SMART();
~CRITICAL_SECTION_SMART();
void Enter();
void Leave();
};
}
class KERNEL_DECL CTemporaryCS