WaitForDebugEventEx method

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

Implementation

int WaitForDebugEventEx(
  ffi.Pointer<LPDEBUG_EVENT> lpDebugEvent,
  int dwMilliseconds,
) {
  return (_WaitForDebugEventEx ??= _dylib.lookupFunction<
      _c_WaitForDebugEventEx,
      _dart_WaitForDebugEventEx>('WaitForDebugEventEx'))(
    lpDebugEvent,
    dwMilliseconds,
  );
}