SetForegroundWindow method

int SetForegroundWindow(
  1. Pointer<HWND__> hWnd
)

Implementation

int SetForegroundWindow(
  ffi.Pointer<HWND__> hWnd,
) {
  return (_SetForegroundWindow ??= _dylib.lookupFunction<
      _c_SetForegroundWindow,
      _dart_SetForegroundWindow>('SetForegroundWindow'))(
    hWnd,
  );
}