SetConsoleScreenBufferSize method

int SetConsoleScreenBufferSize(
  1. Pointer<Void> hConsoleOutput,
  2. COORD dwSize
)

Implementation

int SetConsoleScreenBufferSize(
  ffi.Pointer<ffi.Void> hConsoleOutput,
  COORD dwSize,
) {
  return _SetConsoleScreenBufferSize(
    hConsoleOutput,
    dwSize,
  );
}