]> git.mxchange.org Git - flightgear.git/blob - Simulator/general.h
8bd85906ea26e18ca557ec637bf4229446a15fe7
[flightgear.git] / Simulator / general.h
1 /**************************************************************************
2  * general.h -- a general house keeping data structure definition for 
3  *              various info that might need to be accessible from all 
4  *              parts of the sim.
5  *
6  * Written by Curtis Olson, started July 1997.
7  *
8  * Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License as
12  * published by the Free Software Foundation; either version 2 of the
13  * License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful, but
16  * WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  *
24  * $Id$
25  * (Log is kept at end of this file)
26  **************************************************************************/
27
28
29 #ifndef GENERAL_H
30 #define GENERAL_H
31
32
33 /* the general house keeping structure definition */
34 struct GENERAL {
35     /* The flight gear "root" directory */
36     char *root_dir;
37 };
38
39 /* general contains all the general house keeping parameters. */
40 extern struct GENERAL general;
41
42 #endif /* GENERAL_H */
43
44
45 /* $Log$
46 /* Revision 1.2  1997/08/27 03:29:38  curt
47 /* Changed naming scheme of basic shared structures.
48 /*
49  * Revision 1.1  1997/08/23 11:37:12  curt
50  * Initial revision.
51  *
52  */