WaitForDebugEvent method
Implementation
int WaitForDebugEvent(
ffi.Pointer<LPDEBUG_EVENT> lpDebugEvent,
int dwMilliseconds,
) {
return (_WaitForDebugEvent ??=
_dylib.lookupFunction<_c_WaitForDebugEvent, _dart_WaitForDebugEvent>(
'WaitForDebugEvent'))(
lpDebugEvent,
dwMilliseconds,
);
}