Initial implementation of seatd and libseat
This commit is contained in:
parent
f85434de66
commit
61716a2c77
32 changed files with 4744 additions and 0 deletions
14
include/terminal.h
Normal file
14
include/terminal.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#ifndef _SEATD_TERMINAL_H
|
||||
#define _SEATD_TERMINAL_H
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
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);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue