mirror of
https://github.com/reactos/reactos.git
synced 2025-06-05 01:10:26 +00:00
31 lines
687 B
C
31 lines
687 B
C
![]() |
#ifndef __CONS_SAVER_H
|
||
|
#define __CONS_SAVER_H
|
||
|
|
||
|
#ifndef HAVE_X
|
||
|
enum {
|
||
|
CONSOLE_INIT = '1',
|
||
|
CONSOLE_DONE,
|
||
|
CONSOLE_SAVE,
|
||
|
CONSOLE_RESTORE,
|
||
|
CONSOLE_CONTENTS
|
||
|
};
|
||
|
|
||
|
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);
|
||
|
|
||
|
/* Used only in the principal program */
|
||
|
extern int cons_saver_pid;
|
||
|
|
||
|
#else /* HAVE_X */
|
||
|
# define console_flag 0
|
||
|
# define show_console_contents(w,f,l) { }
|
||
|
# define handle_console(x) { }
|
||
|
#endif
|
||
|
|
||
|
#endif /* __CONS_SAVER_H */
|