SetThreadExecutionState method

int SetThreadExecutionState(
  1. int esFlags
)

Implementation

int SetThreadExecutionState(
  int esFlags,
) {
  return (_SetThreadExecutionState ??= _dylib.lookupFunction<
      _c_SetThreadExecutionState,
      _dart_SetThreadExecutionState>('SetThreadExecutionState'))(
    esFlags,
  );
}