Sync to HEAD
[bpt/emacs.git] / mac / inc / termio.h
CommitLineData
1a578e9b
AC
1/* Replacement termio.h file for building GNU Emacs on the Macintosh.
2 Copyright (C) 1999, 2000 Free Software Foundation, Inc.
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20
e0f712ba 21/* Contributed by Andrew Choi (akochoi@mac.com). */
1a578e9b
AC
22
23#ifndef _SYS_TERMIO_H
24#define _SYS_TERMIO_H
25
26typedef unsigned char cc_t;
27typedef unsigned short tcflag_t;
28
29#define NCCS 32
30
31struct termio {
32 tcflag_t c_iflag; /* input modes */
33 tcflag_t c_oflag; /* output modes */
34 tcflag_t c_cflag; /* control modes */
35 tcflag_t c_lflag; /* local modes */
36 cc_t c_cc[NCCS]; /* control chars */
37};
38
39/* c_cc subscript names */
40#define VINTR 1
41#define VQUIT 2
42#define VERASE 3
43#define VTIME 4
44#define VMIN 5
45
46/* c_iflag fields */
47#define IGNBRK 0x1 /* ignore break condition */
48#define ICRNL 0x2 /* map CR to NL on input */
49#define IXON 0x4 /* enable start/stop output control */
50
51/* c_oflag fields */
52#define ONLCR 0x1 /* map CR to NL on output */
53#define TABDLY 0x2 /* horizontal tab delays */
54#define TAB3 0x4 /* expand tab to spaces */
55
56/* c_cflag fields */
57#define CBAUD 0x1
58#define B9600 0x2
59
60/* c_lflag fields */
61#define ISIG 0x1 /* enable signals */
62#define ICANON 0x2 /* canonical input (erase and kill processing) */
63#define ECHO 0x3 /* enable echo */
64
65#define TCSETAW 4
66#define TCSETAF 5
67
68#endif /* _SYS_TERMIO_H */
6b61353c
KH
69
70/* arch-tag: 0e7a100d-2ac0-412e-9dc4-52e39ef43e14
71 (do not change this comment) */