GetAncestor method

Pointer<HWND__> GetAncestor(
  1. Pointer<HWND__> hwnd,
  2. int gaFlags
)

Implementation

ffi.Pointer<HWND__> GetAncestor(
  ffi.Pointer<HWND__> hwnd,
  int gaFlags,
) {
  return (_GetAncestor ??= _dylib
      .lookupFunction<_c_GetAncestor, _dart_GetAncestor>('GetAncestor'))(
    hwnd,
    gaFlags,
  );
}