blob: 208d6b29dca33ce5a46de2697d6f605410a951a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _SEATD_TERMINAL_H
#define _SEATD_TERMINAL_H
#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(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
|