InheritWindowMonitor method

int InheritWindowMonitor(
  1. Pointer<HWND__> hwnd,
  2. Pointer<HWND__> hwndInherit
)

Implementation

int InheritWindowMonitor(
  ffi.Pointer<HWND__> hwnd,
  ffi.Pointer<HWND__> hwndInherit,
) {
  return (_InheritWindowMonitor ??= _dylib.lookupFunction<
      _c_InheritWindowMonitor,
      _dart_InheritWindowMonitor>('InheritWindowMonitor'))(
    hwnd,
    hwndInherit,
  );
}