ShowScrollBar method

int ShowScrollBar(
  1. Pointer<HWND__> hWnd,
  2. int wBar,
  3. int bShow
)

Implementation

int ShowScrollBar(
  ffi.Pointer<HWND__> hWnd,
  int wBar,
  int bShow,
) {
  return (_ShowScrollBar ??=
      _dylib.lookupFunction<_c_ShowScrollBar, _dart_ShowScrollBar>(
          'ShowScrollBar'))(
    hWnd,
    wBar,
    bShow,
  );
}