SetGestureConfig method

int SetGestureConfig(
  1. Pointer<HWND__> hwnd,
  2. int dwReserved,
  3. int cIDs,
  4. Pointer<PGESTURECONFIG> pGestureConfig,
  5. int cbSize,
)

Implementation

int SetGestureConfig(
  ffi.Pointer<HWND__> hwnd,
  int dwReserved,
  int cIDs,
  ffi.Pointer<PGESTURECONFIG> pGestureConfig,
  int cbSize,
) {
  return (_SetGestureConfig ??=
      _dylib.lookupFunction<_c_SetGestureConfig, _dart_SetGestureConfig>(
          'SetGestureConfig'))(
    hwnd,
    dwReserved,
    cIDs,
    pGestureConfig,
    cbSize,
  );
}