SetEvent function kernel32

int SetEvent(
  1. int hEvent
)

Sets the specified event object to the signaled state.

BOOL SetEvent(
  HANDLE hEvent
);

Implementation

int SetEvent(int hEvent) => _SetEvent(hEvent);