(IntPtr hEvent)
| 104 | private static extern IntPtr CreateEvent(ref SECURITY_ATTRIBUTES sa, bool bManualReset, bool bInitialState, string lpName); |
| 105 | |
| 106 | [DllImport("kernel32.dll")] |
| 107 | private static extern bool PulseEvent(IntPtr hEvent); |
| 108 | |
| 109 | [DllImport("kernel32.dll")] |
| 110 | private static extern bool SetEvent(IntPtr hEvent); |
nothing calls this directly
no outgoing calls
no test coverage detected