You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
729 B
40 lines
729 B
//***************************************************************************
|
|
//
|
|
// Copyright © Microsoft Corporation. All rights reserved.
|
|
//
|
|
// stllock.h
|
|
//
|
|
// Purpose: Critical section class
|
|
//
|
|
//***************************************************************************
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif
|
|
|
|
#ifndef _STLLOCK_H_
|
|
#define _STLLOCK_H_
|
|
|
|
class CCritSec : public CRITICAL_SECTION
|
|
{
|
|
public:
|
|
CCritSec()
|
|
{
|
|
InitializeCriticalSection(this);
|
|
}
|
|
~CCritSec()
|
|
{
|
|
DeleteCriticalSection(this);
|
|
}
|
|
void Enter()
|
|
{
|
|
EnterCriticalSection(this);
|
|
}
|
|
void Leave()
|
|
{
|
|
LeaveCriticalSection(this);
|
|
}
|
|
};
|
|
|
|
#endif
|
|
|