Codepage messages related translated & other stuff...
[midnight-commander.git] / src / cons.saver.h
blob561300dd0cd12df16a168db8a5f573c4b74e7395
1 #ifndef __CONS_SAVER_H
2 #define __CONS_SAVER_H
4 #ifndef HAVE_X
5 enum {
6 CONSOLE_INIT = '1',
7 CONSOLE_DONE,
8 CONSOLE_SAVE,
9 CONSOLE_RESTORE,
10 CONSOLE_CONTENTS
13 extern signed char console_flag;
15 void show_console_contents (int starty, unsigned char begin_line, unsigned char end_line);
16 void handle_console (unsigned char action);
18 void show_rxvt_contents (int starty, unsigned char y1, unsigned char y2);
19 int look_for_rxvt_extensions (void);
21 /* Used only in the principal program */
22 extern int cons_saver_pid;
24 #else /* HAVE_X */
25 # define console_flag 0
26 # define show_console_contents(w,f,l) { }
27 # define handle_console(x) { }
28 #endif
30 #endif /* __CONS_SAVER_H */