GetWindowExtEx method

int GetWindowExtEx(
  1. Pointer<HDC__> hdc,
  2. Pointer<LPSIZE> lpsize
)

Implementation

int GetWindowExtEx(
  ffi.Pointer<HDC__> hdc,
  ffi.Pointer<LPSIZE> lpsize,
) {
  return (_GetWindowExtEx ??=
      _dylib.lookupFunction<_c_GetWindowExtEx, _dart_GetWindowExtEx>(
          'GetWindowExtEx'))(
    hdc,
    lpsize,
  );
}