1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef __LIBTERM_SCREEN_MODES_H #define __LIBTERM_SCREEN_MODES_H typedef enum { SCREEN_MODE_NONE=0, SCREEN_MODE_80x25 } screen_mode_e; typedef struct term_screen_mode { screen_mode_e mode; } term_screen_mode; #endif