1 /*
2  * $Id: io-x11.h,v 1.6 2000/08/10 21:02:50 danny Exp $
3  *
4  * Copyright � 1993, 1999 Free Software Foundation, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this software; see the file COPYING.  If not, write to
18  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20 #ifndef IO_X11H
21 #define IO_X11H
22 
23 #ifndef X_DISPLAY_MISSING
24 
25 extern void get_x11_args (int * argc_p, char ** argv);
26 extern int io_col_to_input_pos (int c);
27 extern void x11_graphics (void);
28 extern void set_x_default_point_size (int l);
29 
30 #endif /* X_DISPLAY_MISSING */
31 
32 #endif /* IO_X11H */
33