mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
e792cffb8d
double underscore. Added #includes for dependent files. * popt.c: Likewise. * popthelp.c: Likewise. * tree.c: Moved a macro from tree.h to here, as it is useless outside tree.c.
27 lines
581 B
C
27 lines
581 B
C
#ifndef MC_CONS_SAVER_H
|
|
#define MC_CONS_SAVER_H
|
|
|
|
enum {
|
|
CONSOLE_INIT = '1',
|
|
CONSOLE_DONE,
|
|
CONSOLE_SAVE,
|
|
CONSOLE_RESTORE,
|
|
CONSOLE_CONTENTS
|
|
};
|
|
|
|
#ifndef LINUX_CONS_SAVER_C
|
|
/* Used only in mc, not in cons.saver */
|
|
|
|
extern signed char console_flag;
|
|
|
|
void show_console_contents (int starty, unsigned char begin_line, unsigned char end_line);
|
|
void handle_console (unsigned char action);
|
|
|
|
void show_rxvt_contents (int starty, unsigned char y1, unsigned char y2);
|
|
int look_for_rxvt_extensions (void);
|
|
|
|
extern int cons_saver_pid;
|
|
#endif /* !LINUX_CONS_SAVER_C */
|
|
|
|
#endif
|