Lines Matching defs:frame
79 struct frame struct
81 char title[32];
82 size_t max_size;
83 size_t max_page;
84 char* buf;
85 size_t idx_head, idx_tail;
86 size_t line_per_page;
87 size_t line_width;
88 size_t lines, pages;
89 uint8_t esc_sts;
90 bool overwrite;
91 time_t mtime;
93 frame() : buf(nullptr), pages(0), mtime(0) {} in frame() function