WaitForDebugEvent method

int WaitForDebugEvent(
  1. Pointer<LPDEBUG_EVENT> lpDebugEvent,
  2. int dwMilliseconds
)

Implementation

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