struct tui_source_window_base;
struct tui_source_window;
-/* This is a point definition. */
-struct tui_point
-{
- int x, y;
-};
-
/* A deleter that calls delwin. */
struct curses_deleter
{
/* Window height. */
int height = 0;
/* Origin of window. */
- struct tui_point origin = {0, 0};
+ int x = 0;
+ int y = 0;
/* Viewport height. */
int viewport_height = 0;
};