1234567891011121314151617181920212223242526272829303132333435 |
- //#include <windows.h>
- #include "pch.h"
- #include <base.h>
- CBase::CBase()
- {
- InitializeCriticalSection(&mBaseCritSect);
- }
- CBase::~CBase()
- {
- DeleteCriticalSection(&mBaseCritSect);
- }
- VOID CBase::Lock()
- {
- EnterCriticalSection(&mBaseCritSect);
- }
- VOID CBase::Unlock()
- {
- LeaveCriticalSection(&mBaseCritSect);
- }
- VOID CBase::operator=(const CBase &Other)
- {
- }
|