CEvent::SetEvent

Call this member function to set the state of the event to signaled, releasing any waiting threads. If the event is manual, the event will remain signaled until ResetEvent is called. If the event is automatic, the event will remain signaled until a single thread is released.

Syntax

BOOL SetEvent( );

At a Glance

Header file: Afxmt.h
Platforms:
Versions: 1.0 and later
Complete documentation: Visual C++ documentation

Remarks

Windows CE does not support waiting for a process or thread.

See Also

CEvent Overview, CEvent Member Functions, Synchronization Classes