CreateEvent

[DllImport("Kernel32.dll")][return: MarshalAs(UnmanagedType.Bool)]
public static extern IntPtr CreateEvent(
   IntPtr lpEventAttributes,
   [MarshalAs(UnmanagedType.Bool)] bool bManualReset,
   [MarshalAs(UnmanagedType.Bool)] bool bInitialState,
   string lpName
);

Microsoft documentation: Link

Last updated