Group: Synchronization - Library: kernel32
Using an Event Object. Part A: running an application that creates an Event object
BOOL SetEvent(
HANDLE hEvent // handle to event
);
DECLARE INTEGER SetEvent IN kernel32;
INTEGER hEvent
hEvent [in] Handle to the event object. The CreateEvent or OpenEvent function returns this handle.
If the function succeeds, the return value is nonzero.