1 |
aw0a |
1 |
/* |
2 |
|
|
* Interface Implementation - terminal setup |
3 |
|
|
* by Tom Epperly |
4 |
|
|
* Created: 1/17/90 |
5 |
|
|
* Version: $Revision: 1.4 $ |
6 |
|
|
* Version control file: $RCSfile: termsetup.h,v $ |
7 |
|
|
* Date last modified: $Date: 1997/07/18 12:35:29 $ |
8 |
|
|
* Last modified by: $Author: mthomas $ |
9 |
|
|
* |
10 |
|
|
* This file is part of the Ascend Language Interpreter. |
11 |
|
|
* |
12 |
|
|
* Copyright (C) 1990, 1993, 1994 Thomas Guthrie Epperly |
13 |
|
|
* |
14 |
|
|
* The Ascend Language Interpreter is free software; you can redistribute |
15 |
|
|
* it and/or modify it under the terms of the GNU General Public License as |
16 |
|
|
* published by the Free Software Foundation; either version 2 of the |
17 |
|
|
* License, or (at your option) any later version. |
18 |
|
|
* |
19 |
|
|
* The Ascend Language Interpreter is distributed in hope that it will be |
20 |
|
|
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of |
21 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
22 |
|
|
* General Public License for more details. |
23 |
|
|
* |
24 |
|
|
* You should have received a copy of the GNU General Public License |
25 |
|
|
* along with the program; if not, write to the Free Software Foundation, |
26 |
|
|
* Inc., 675 Mass Ave, Cambridge, MA 02139 USA. Check the file named |
27 |
|
|
* COPYING. |
28 |
|
|
*/ |
29 |
|
|
|
30 |
|
|
#ifndef __TERMSETUP_H_SEEN__ |
31 |
|
|
#define __TERMSETUP_H_SEEN__ |
32 |
|
|
|
33 |
|
|
extern int OutputChar(); |
34 |
|
|
extern void DeleteBackOne(); |
35 |
|
|
extern void ClearScreen(); |
36 |
|
|
extern void Bell(); |
37 |
|
|
extern void ClearLine(); |
38 |
|
|
extern void SetupTermcapStuff(); |
39 |
|
|
extern void InterfaceError(); |
40 |
|
|
extern void SetupTerminal(); |
41 |
|
|
extern void RestoreTerminal(); |
42 |
|
|
extern void TermSetup_ResetTerminal(); |
43 |
|
|
extern void ReadString(); |
44 |
|
|
|
45 |
|
|
#endif /* __TERMSETUP_H_SEEN__ */ |