-
Notifications
You must be signed in to change notification settings - Fork 123
/
jim-tty.h
46 lines (38 loc) · 1.15 KB
/
jim-tty.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef JIM_TTY_H
#define JIM_TTY_H
#include <jim.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* Return the tty settings for the given file descriptor as a dictionary
* with a zero reference count.
*
* Returns NULL and sets errno file descriptor is not a valid tty.
*/
Jim_Obj *Jim_GetTtySettings(Jim_Interp *interp, int fd);
/**
* Sets the tty settings given in 'dictObjPtr'
*
* Returns JIM_OK if OK, JIM_ERR if any settings are invalid,
* or -1 (and sets errno) if the file descriptor is not a valid tty.
*/
int Jim_SetTtySettings(Jim_Interp *interp, int fd, Jim_Obj *dictObjPtr);
/**
* Return the tty modem control settings for the given file descriptor as a dictionary
* with a zero reference count.
*
* Returns NULL and sets errno file descriptor is not a valid tty.
*/
Jim_Obj *Jim_GetTtyControlSettings(Jim_Interp *interp, int fd);
/**
* Sets the tty modem control settings given in 'dictObjPtr'
*
* Returns JIM_OK if OK, JIM_ERR if any settings are invalid,
* or -1 (and sets errno) if the file descriptor is not a valid tty.
*/
int Jim_SetTtyControlSettings(Jim_Interp *interp, int fd, Jim_Obj *dictObjPtr);
#ifdef __cplusplus
}
#endif
#endif