ScreenToClient method

int ScreenToClient(
  1. Pointer<HWND__> hWnd,
  2. Pointer<LPPOINT> lpPoint
)

Implementation

int ScreenToClient(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<LPPOINT> lpPoint,
) {
  return (_ScreenToClient ??=
      _dylib.lookupFunction<_c_ScreenToClient, _dart_ScreenToClient>(
          'ScreenToClient'))(
    hWnd,
    lpPoint,
  );
}