SleepEx method

int SleepEx(
  1. int dwMilliseconds,
  2. int bAlertable
)

Implementation

int SleepEx(
  int dwMilliseconds,
  int bAlertable,
) {
  return (_SleepEx ??=
      _dylib.lookupFunction<_c_SleepEx, _dart_SleepEx>('SleepEx'))(
    dwMilliseconds,
    bAlertable,
  );
}