GetMonitorInfoA method

int GetMonitorInfoA(
  1. Pointer<HMONITOR__> hMonitor,
  2. Pointer<LPMONITORINFO> lpmi
)

Implementation

int GetMonitorInfoA(
  ffi.Pointer<HMONITOR__> hMonitor,
  ffi.Pointer<LPMONITORINFO> lpmi,
) {
  return (_GetMonitorInfoA ??=
      _dylib.lookupFunction<_c_GetMonitorInfoA, _dart_GetMonitorInfoA>(
          'GetMonitorInfoA'))(
    hMonitor,
    lpmi,
  );
}