CreateSyntheticPointerDevice method

Pointer<HSYNTHETICPOINTERDEVICE__> CreateSyntheticPointerDevice(
  1. int pointerType,
  2. int maxCount,
  3. int mode
)

Implementation

ffi.Pointer<HSYNTHETICPOINTERDEVICE__> CreateSyntheticPointerDevice(
  int pointerType,
  int maxCount,
  int mode,
) {
  return (_CreateSyntheticPointerDevice ??= _dylib.lookupFunction<
      _c_CreateSyntheticPointerDevice,
      _dart_CreateSyntheticPointerDevice>('CreateSyntheticPointerDevice'))(
    pointerType,
    maxCount,
    mode,
  );
}