ResetEvent function kernel32

int ResetEvent(
  1. int hEvent
)

Sets the specified event object to the nonsignaled state.

BOOL ResetEvent(
  HANDLE hEvent
);

Implementation

int ResetEvent(int hEvent) => _ResetEvent(hEvent);