GetWindowFeedbackSetting method

int GetWindowFeedbackSetting(
  1. Pointer<HWND__> hwnd,
  2. int feedback,
  3. int dwFlags,
  4. Pointer<Uint32> pSize,
  5. Pointer<Void> config,
)

Implementation

int GetWindowFeedbackSetting(
  ffi.Pointer<HWND__> hwnd,
  int feedback,
  int dwFlags,
  ffi.Pointer<ffi.Uint32> pSize,
  ffi.Pointer<ffi.Void> config,
) {
  return (_GetWindowFeedbackSetting ??= _dylib.lookupFunction<
      _c_GetWindowFeedbackSetting,
      _dart_GetWindowFeedbackSetting>('GetWindowFeedbackSetting'))(
    hwnd,
    feedback,
    dwFlags,
    pSize,
    config,
  );
}