SleepEx method

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

Implementation

int SleepEx(
  int dwMilliseconds,
  int bAlertable,
) {
  return _SleepEx(
    dwMilliseconds,
    bAlertable,
  );
}