GetWindowRect method

int GetWindowRect(
  1. Pointer<HWND__> hWnd,
  2. Pointer<RECT> lpRect
)

Implementation

int GetWindowRect(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<RECT> lpRect,
) {
  return _GetWindowRect(
    hWnd,
    lpRect,
  );
}