Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 66 of file event.c.
Referenced by dispatch().
{ BOOL Success; if (!WSAINITIALIZED) { WSASetLastError(WSANOTINITIALISED); return FALSE; } Success = ResetEvent((HANDLE)hEvent); if (!Success) WSASetLastError(WSA_INVALID_HANDLE); return Success; }