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