00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 Open Download Manager Copyright (c) 2008-2010 OpenDownloadManager.ORG 00004 */ 00005 00006 #include "stdafx.h" 00007 #include "vmsCriticalSection.h" 00008 00009 #ifdef _DEBUG 00010 #undef THIS_FILE 00011 static char THIS_FILE[]=__FILE__; 00012 #define new DEBUG_NEW 00013 #endif 00014 00015 vmsCriticalSection::vmsCriticalSection() 00016 { 00017 ::InitializeCriticalSection (this); 00018 } 00019 00020 vmsCriticalSection::~vmsCriticalSection() 00021 { 00022 ::DeleteCriticalSection (this); 00023 } 00024 00025 void vmsCriticalSection::Lock() 00026 { 00027 ::EnterCriticalSection (this); 00028 } 00029 00030 void vmsCriticalSection::Unlock() 00031 { 00032 ::LeaveCriticalSection (this); 00033 }
1.5.6