ScrollConsoleScreenBufferA method

int ScrollConsoleScreenBufferA(
  1. Pointer<Void> hConsoleOutput,
  2. Pointer<SMALL_RECT> lpScrollRectangle,
  3. Pointer<SMALL_RECT> lpClipRectangle,
  4. COORD dwDestinationOrigin,
  5. Pointer<CHAR_INFO> lpFill,
)

Implementation

int ScrollConsoleScreenBufferA(
  ffi.Pointer<ffi.Void> hConsoleOutput,
  ffi.Pointer<SMALL_RECT> lpScrollRectangle,
  ffi.Pointer<SMALL_RECT> lpClipRectangle,
  COORD dwDestinationOrigin,
  ffi.Pointer<CHAR_INFO> lpFill,
) {
  return _ScrollConsoleScreenBufferA(
    hConsoleOutput,
    lpScrollRectangle,
    lpClipRectangle,
    dwDestinationOrigin,
    lpFill,
  );
}