SetWindowFeedbackSetting method

int SetWindowFeedbackSetting(
  1. Pointer<HWND__> hwnd,
  2. int feedback,
  3. int dwFlags,
  4. int size,
  5. Pointer<Void> configuration,
)

Implementation

int SetWindowFeedbackSetting(
  ffi.Pointer<HWND__> hwnd,
  int feedback,
  int dwFlags,
  int size,
  ffi.Pointer<ffi.Void> configuration,
) {
  return (_SetWindowFeedbackSetting ??= _dylib.lookupFunction<
      _c_SetWindowFeedbackSetting,
      _dart_SetWindowFeedbackSetting>('SetWindowFeedbackSetting'))(
    hwnd,
    feedback,
    dwFlags,
    size,
    configuration,
  );
}