summaryrefslogblamecommitdiffstats
path: root/libterm/screen_modes.h
blob: 261cbf524c60c7fcd7d32f51482d658595df4f0f (plain) (tree)
1
2
3
4
5
6
7





                                
                         







                               
#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