Iros
 
Loading...
Searching...
No Matches
tty.h
Go to the documentation of this file.
1#pragma once
2
3#include "di/types/integers.h"
4
5namespace dius::tty {
6struct WindowSize {
7 u32 rows { 0 };
8 u32 cols { 0 };
11
12 auto operator==(WindowSize const&) const -> bool = default;
13};
14}
__UINT32_TYPE__ u32
Definition integers.h:11
Definition tty.h:5
Definition tty.h:6
u32 rows
Definition tty.h:7
auto operator==(WindowSize const &) const -> bool=default
u32 cols
Definition tty.h:8
u32 pixel_width
Definition tty.h:9
u32 pixel_height
Definition tty.h:10