GetWindowLongW method

int GetWindowLongW(
  1. Pointer<HWND__> hWnd,
  2. int nIndex
)

Implementation

int GetWindowLongW(
  ffi.Pointer<HWND__> hWnd,
  int nIndex,
) {
  return (_GetWindowLongW ??=
      _dylib.lookupFunction<_c_GetWindowLongW, _dart_GetWindowLongW>(
          'GetWindowLongW'))(
    hWnd,
    nIndex,
  );
}