CComCriticalSection::Lock

This method calls the Windows CE function EnterCriticalSection, which waits until the thread can take ownership of the critical section object contained in the m_sec data member. The critical section object must first be initialized with a call to the Init method. When the protected code has finished executing, the thread must call Unlock to release ownership of the critical section.

At a Glance

Header file: Atlwin.h
Windows CE versions: 2.0 and later
Complete documentation: Visual C++ documentation

Syntax

void Lock( );

See Also

CComCriticalSection::Init, CComCriticalSection::Unlock, CComCriticalSection::m_sec, EnterCriticalSection