MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / SetEvent

Function SetEvent

pydevd_attach_to_process/winappdbg/win32/kernel32.py:3734–3739  ·  view source on GitHub ↗
(hEvent)

Source from the content-addressed store, hash-verified

3732# _In_ HANDLE hEvent
3733# );
3734def 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(

Callers 2

~NotificationHelperMethod · 0.85
AttachCallbackFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected