1 /* Copyright (C) 1992-1998 The Geometry Center
2  * Copyright (C) 1998-2000 Stuart Levy, Tamara Munzner, Mark Phillips
3  *
4  * This file is part of Geomview.
5  *
6  * Geomview is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU Lesser General Public License as published
8  * by the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * Geomview is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Geomview; see the file COPYING.  If not, write
18  * to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139,
19  * USA, or visit http://www.gnu.org.
20  */
21 #include "handle.h"
22 
23 extern void usepipe(char *pipedir, char *pipename, char *pipetype);
24 extern void init_geomview(int argc, char **argv);
25 extern void usage(char *me, char *morestuff);
26 extern int parse_common_arg(int *acp, char ***avp);
27 extern char *geomview_system_initfile;
28 extern vvec vv_load_path;
29 extern vvec vv_emodule_path;
30 
31 #define load_path VVEC(vv_load_path, char *)
32 #define load_path_count VVCOUNT(vv_load_path)
33 #define emodule_path VVEC(vv_emodule_path, char *)
34 #define emodule_path_count VVCOUNT(vv_emodule_path)
35 
36 extern int gv_nwins;
37 extern int gv_no_opengl;
38