GetWindowInfo method

int GetWindowInfo(
  1. Pointer<HWND__> hwnd,
  2. Pointer<LPWINDOWINFO> pwi
)

Implementation

int GetWindowInfo(
  ffi.Pointer<HWND__> hwnd,
  ffi.Pointer<LPWINDOWINFO> pwi,
) {
  return (_GetWindowInfo ??=
      _dylib.lookupFunction<_c_GetWindowInfo, _dart_GetWindowInfo>(
          'GetWindowInfo'))(
    hwnd,
    pwi,
  );
}