###User Defined Function###
_WinAPI_SetEvent

###Description###
Sets the specified event object to the signaled state

###Syntax###
#include <WinAPI.au3>
_WinAPI_SetEvent ( $hEvent )


###Parameters###
@@ParamTable@@
$hEvent
	Handle to the event object
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	True
Failure:	False, call <a href="_WinAPI_GetLastError.htm">_WinAPI_GetLastError()</a> to get extended error information
@@End@@


###Remarks###
The state of a manual-reset event object remains signaled until it is set explicitly to the nonsignaled state
by the ResetEvent function. Any number of waiting threads, or threads that subsequently begin wait operations
for the specified event object by calling one of the wait functions, can be released when the object's state
is signaled.


###Related###


###See Also###
@@MsdnLink@@ SetEvent
