(hEvent)
| 3732 | # _In_ HANDLE hEvent |
| 3733 | # ); |
| 3734 | def SetEvent(hEvent): |
| 3735 | _SetEvent = windll.kernel32.SetEvent |
| 3736 | _SetEvent.argtypes = [HANDLE] |
| 3737 | _SetEvent.restype = bool |
| 3738 | _SetEvent.errcheck = RaiseIfZero |
| 3739 | _SetEvent(hEvent) |
| 3740 | |
| 3741 | |
| 3742 | # BOOL WINAPI ResetEvent( |
no outgoing calls
no test coverage detected