2020-07-31 00:22:18 +02:00
|
|
|
#ifndef _SEATD_TERMINAL_H
|
|
|
|
#define _SEATD_TERMINAL_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2020-08-02 20:21:19 +02:00
|
|
|
int terminal_open(int vt);
|
|
|
|
|
|
|
|
int terminal_set_process_switching(int fd, bool enable);
|
|
|
|
int terminal_current_vt(int fd);
|
|
|
|
int terminal_switch_vt(int fd, int vt);
|
2020-09-22 01:00:18 +02:00
|
|
|
int terminal_ack_release(int fd);
|
|
|
|
int terminal_ack_acquire(int fd);
|
2020-08-02 20:21:19 +02:00
|
|
|
int terminal_set_keyboard(int fd, bool enable);
|
|
|
|
int terminal_set_graphics(int fd, bool enable);
|
2020-07-31 00:22:18 +02:00
|
|
|
|
|
|
|
#endif
|