2 #if defined (ACE_WIN32)
4 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
7 ACE_Msg_WFMO_Reactor::handle_events (ACE_Time_Value &how_long)
9 return this->event_handling (&how_long, 0);
13 ACE_Msg_WFMO_Reactor::alertable_handle_events (ACE_Time_Value &how_long)
15 return this->event_handling (&how_long, MWMO_ALERTABLE);
19 ACE_Msg_WFMO_Reactor::handle_events (ACE_Time_Value *how_long)
21 return this->event_handling (how_long, 0);
25 ACE_Msg_WFMO_Reactor::alertable_handle_events (ACE_Time_Value *how_long)
27 return this->event_handling (how_long, MWMO_ALERTABLE);
30 ACE_END_VERSIONED_NAMESPACE_DECL
32 #endif /* ACE_WIN32 */