GetPointerDevices method

int GetPointerDevices(
  1. Pointer<Uint32> deviceCount,
  2. Pointer<POINTER_DEVICE_INFO> pointerDevices
)

Implementation

int GetPointerDevices(
  ffi.Pointer<ffi.Uint32> deviceCount,
  ffi.Pointer<POINTER_DEVICE_INFO> pointerDevices,
) {
  return (_GetPointerDevices ??=
      _dylib.lookupFunction<_c_GetPointerDevices, _dart_GetPointerDevices>(
          'GetPointerDevices'))(
    deviceCount,
    pointerDevices,
  );
}