Desktop Functions: Smart Device Functions:
|
Search Results for "PulseEvent" in [All]coredll1: CreateEvent
'''The state of an event object remains nonsignaled until it is explicitly set to signaled by the SetEvent or PulseEvent function. This nonsignaled state blocks the execution of any threads that have specified the event object in a call to one of the wait functions. kernel322: CreateEvent
static extern bool PulseEvent(IntPtr hEvent);
PulseEvent( _Handle ); 3: PulseEvent
winmm4: timeSetEvent
//TIME_CALLBACK_EVENT_PULSE = 0x0020 /* callback is event - use PulseEvent */ |