GetWindowOrgEx method

int GetWindowOrgEx(
  1. Pointer<HDC__> hdc,
  2. Pointer<LPPOINT> lppoint
)

Implementation

int GetWindowOrgEx(
  ffi.Pointer<HDC__> hdc,
  ffi.Pointer<LPPOINT> lppoint,
) {
  return (_GetWindowOrgEx ??=
      _dylib.lookupFunction<_c_GetWindowOrgEx, _dart_GetWindowOrgEx>(
          'GetWindowOrgEx'))(
    hdc,
    lppoint,
  );
}