diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1995-11-06 15:32:44 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1995-11-06 15:32:44 +0000 |
commit | 00bcc2f94f80af4176b401454bdc99fa961f4a4b (patch) | |
tree | db818ddb32bf1a9c81c5450be925d98798f2ec1c /otherlibs/unix/unix.mli | |
parent | a9313788e182755c5ed28444f9bd60962107d1c5 (diff) |
Interface Termios rendue plus conforme a POSIX
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@415 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/unix/unix.mli')
-rw-r--r-- | otherlibs/unix/unix.mli | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/otherlibs/unix/unix.mli b/otherlibs/unix/unix.mli index 007809f33..1801234ac 100644 --- a/otherlibs/unix/unix.mli +++ b/otherlibs/unix/unix.mli @@ -758,19 +758,6 @@ type terminal_io = { mutable c_ixoff: bool; (* Emit XON/XOFF chars to control input flow. *) (* Output modes: *) mutable c_opost: bool; (* Enable output processing. *) - mutable c_olcuc: bool; (* Map lowercase to uppercase on output. *) - mutable c_onlcr: bool; (* Map NL to CR/NL on output. *) - mutable c_ocrnl: bool; (* Map CR to NL on output. *) - mutable c_onocr: bool; (* No CR output at column 0. *) - mutable c_onlret: bool; (* NL is assumed to perform as CR. *) - mutable c_ofill: bool; (* Use fill characters instead of delays. *) - mutable c_ofdel: bool; (* Fill character is DEL instead of NULL. *) - mutable c_nldly: int; (* Newline delay type (0-1). *) - mutable c_crdly: int; (* Carriage return delay type (0-3). *) - mutable c_tabdly: int; (* Horizontal tab delay type (0-3). *) - mutable c_bsdly: int; (* Backspace delay type (0-1). *) - mutable c_vtdly: int; (* Vertical tab delay type (0-1). *) - mutable c_ffdly: int; (* Form feed delay type (0-1). *) (* Control modes: *) mutable c_obaud: int; (* Output baud rate (0 means close connection).*) mutable c_ibaud: int; (* Input baud rate. *) |