428
|
1 /* Define stream specific console, device, and frame object for XEmacs.
|
|
2 Copyright (C) 1995 Board of Trustees, University of Illinois.
|
|
3 Copyright (C) 1995 Free Software Foundation, Inc.
|
1204
|
4 Copyright (C) 2002 Ben Wing.
|
428
|
5
|
|
6 This file is part of XEmacs.
|
|
7
|
|
8 XEmacs is free software; you can redistribute it and/or modify it
|
|
9 under the terms of the GNU General Public License as published by the
|
|
10 Free Software Foundation; either version 2, or (at your option) any
|
|
11 later version.
|
|
12
|
|
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
16 for more details.
|
|
17
|
|
18 You should have received a copy of the GNU General Public License
|
|
19 along with XEmacs; see the file COPYING. If not, write to
|
|
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
21 Boston, MA 02111-1307, USA. */
|
|
22
|
|
23 /* Synched up with: Not in FSF. */
|
|
24
|
|
25 /* Written by Ben Wing. */
|
|
26
|
440
|
27 #ifndef INCLUDED_console_stream_h_
|
|
28 #define INCLUDED_console_stream_h_
|
428
|
29
|
|
30 #include "console.h"
|
|
31
|
1204
|
32 extern const struct sized_memory_description stream_console_data_description;
|
|
33
|
428
|
34 extern Lisp_Object Vterminal_console, Vterminal_frame, Vterminal_device;
|
|
35
|
872
|
36 Lisp_Object stream_semi_canonicalize_console_connection (Lisp_Object,
|
|
37 Error_Behavior);
|
|
38 Lisp_Object stream_canonicalize_console_connection (Lisp_Object,
|
|
39 Error_Behavior);
|
|
40 Lisp_Object stream_semi_canonicalize_device_connection (Lisp_Object,
|
578
|
41 Error_Behavior);
|
872
|
42 Lisp_Object stream_canonicalize_device_connection (Lisp_Object,
|
578
|
43 Error_Behavior);
|
440
|
44 #endif /* INCLUDED_console_stream_h_ */
|