ghostty_terminal_resize function

GhosttyResult ghostty_terminal_resize(
  1. GhosttyTerminal terminal,
  2. int cols,
  3. int rows,
  4. int cell_width_px,
  5. int cell_height_px,
)

Implementation

GhosttyResult ghostty_terminal_resize(
  GhosttyTerminal terminal,
  int cols,
  int rows,
  int cell_width_px,
  int cell_height_px,
) => GhosttyResult.fromValue(
  _ghostty_terminal_resize(terminal, cols, rows, cell_width_px, cell_height_px),
);