----------------------------------------------------------------------------- Test whether the event is set -----------------------------------------------------------------------------
| 83 | // Test whether the event is set |
| 84 | //----------------------------------------------------------------------------- |
| 85 | bool EventImpl::IsSignalled |
| 86 | ( |
| 87 | ) |
| 88 | { |
| 89 | return( WAIT_OBJECT_0 == WaitForSingleObjectEx( m_hEvent, 0, FALSE) ); |
| 90 | } |
| 91 | |
| 92 | //----------------------------------------------------------------------------- |
| 93 | // <EventImpl::Wait> |