|
WSAResetEvent
The Windows Sockets WSAResetEvent function resets the state of the specified event object to nonsignaled.
BOOL WSAResetEvent(
Parameters
hEvent
[in] Identifies an open event object handle.
Remarks
The state of the event object is set to be nonsignaled.
Return Values
If the function succeeds, the return value is TRUE. If the function fails, the
return value is FALSE. To get extended error information, call WSAGetLastError.
Error Codes
WSANOTINITIALISED
| A successful WSAStartup must occur before using this function.
| WSAENETDOWN
| The network subsystem has failed.
| WSAEINPROGRESS
| A blocking Windows Sockets 1.1 call is in progress, or the service provider is
still processing a callback function.
| WSA_INVALID_HANDLE
| hEvent is not a valid event object handle.
|
See Also
WSACloseEvent, WSACreateEvent, WSASetEvent
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|