]> git.mxchange.org Git - flightgear.git/commitdiff
Promoted fgGENERAL to a "type" of struct.
authorcurt <curt>
Sat, 14 Mar 1998 00:27:58 +0000 (00:27 +0000)
committercurt <curt>
Sat, 14 Mar 1998 00:27:58 +0000 (00:27 +0000)
general.h

index 15b1ae00ad7f3e68e2d2d0b48073d389622de727..bed41a4da472b33e717a573a4243674e3b52cbac 100644 (file)
--- a/general.h
+++ b/general.h
 
 
 /* the general house keeping structure definition */
-struct fgGENERAL {
+typedef struct {
     /* The flight gear "root" directory */
     char *root_dir;
-};
+} fgGENERAL;
 
 /* general contains all the general house keeping parameters. */
-extern struct fgGENERAL general;
+extern fgGENERAL general;
 
 #endif /* _GENERAL_H */
 
 
 /* $Log$
-/* Revision 1.2  1998/01/22 02:59:35  curt
-/* Changed #ifdef FILE_H to #ifdef _FILE_H
+/* Revision 1.3  1998/03/14 00:27:58  curt
+/* Promoted fgGENERAL to a "type" of struct.
 /*
+ * Revision 1.2  1998/01/22 02:59:35  curt
+ * Changed #ifdef FILE_H to #ifdef _FILE_H
+ *
  * Revision 1.1  1997/12/15 21:02:16  curt
  * Moved to .../FlightGear/Src/Include/
  *