diff options
Diffstat (limited to 'include/terminal.h')
-rw-r--r-- | include/terminal.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/include/terminal.h b/include/terminal.h index c2a49ff..208d6b2 100644 --- a/include/terminal.h +++ b/include/terminal.h @@ -3,12 +3,15 @@ #include <stdbool.h> +int terminal_open(int vt); + +int terminal_set_process_switching(int fd, bool enable); int terminal_setup(int vt); int terminal_teardown(int vt); -int terminal_current_vt(void); -int terminal_switch_vt(int vt); -int terminal_ack_switch(void); -int terminal_set_keyboard(int vt, bool enable); -int terminal_set_graphics(int vt, bool enable); +int terminal_current_vt(int fd); +int terminal_switch_vt(int fd, int vt); +int terminal_ack_switch(int fd); +int terminal_set_keyboard(int fd, bool enable); +int terminal_set_graphics(int fd, bool enable); #endif |