Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
244 chris 1
#pragma warning( disable : 4786 )
2
 
3
#include "CritSect.h"
4
#include <windows.h>
5
 
6
using namespace Sexy;
7
 
8
////////////////////////////////////////////////////////////////////////////////
9
 
10
CritSect::CritSect(void)
11
{
12
        InitializeCriticalSection(&mCriticalSection);
13
}
14
 
15
////////////////////////////////////////////////////////////////////////////////
16
 
17
CritSect::~CritSect(void)
18
{
19
        DeleteCriticalSection(&mCriticalSection);
20
}