]> git.mxchange.org Git - flightgear.git/commitdiff
fg_typedefs.h: updated version by Charlie Hotchkiss
authorcurt <curt>
Wed, 13 May 1998 18:23:46 +0000 (18:23 +0000)
committercurt <curt>
Wed, 13 May 1998 18:23:46 +0000 (18:23 +0000)
general.h: moved fg_root info to fgOPTIONS structure.

fg_typedefs.h
general.h

index 87e085b8841b707c4128f840fc97121eb1bd3ddf..ab398a379b25e04828ab16c6e25760a3e281cf72 100644 (file)
@@ -1,25 +1,28 @@
 /*
 //  Alterations: Copyright C. Hotchkiss 1996
 //
-**$Log$
-**Revision 1.1  1998/05/11 18:26:12  curt
-**Initial revision.
-**
+// $Log$
+// Revision 1.2  1998/05/13 18:23:46  curt
+// fg_typedefs.h: updated version by Charlie Hotchkiss
+// general.h: moved fg_root info to fgOPTIONS structure.
+//
+// Revision 1.1  1998/05/11 18:26:12  curt
+// Initial revision.
 //
 //   Rev 1.4   11 Nov 1997 15:34:28   CHOTCHKISS
-//Expanded definitions.
+// Expanded definitions.
 //
 //   Rev 1.3   20 Jan 1997  9:21:26   CHOTCHKISS
-//Minor additions.
+// Minor additions.
 //
 //   Rev 1.2   12 Nov 1996 15:06:52   CHOTCHKISS
-//Dropped PC Write print format control lines.
-*
-  Rev 1.1   20 Nov 1995 15:59:02   CHOTCHKISS
-*Additions and improvements. Memcheck compatibilities.
-*
-  Rev 1.0   06 Apr 1995 14:00:32   CHOTCHKISS
-*Initial revision.
+// Dropped PC Write print format control lines.
+//
+//  Rev 1.1   20 Nov 1995 15:59:02   CHOTCHKISS
+// Additions and improvements. Memcheck compatibilities.
+//
+//  Rev 1.0   06 Apr 1995 14:00:32   CHOTCHKISS
+// Initial revision.
 \f\ f
 */
 /*
@@ -57,7 +60,7 @@ typedef long           LONG ;    // 32-bit signed data
 typedef unsigned long  ULONG ;   // 32-bit unsigned data
 
 typedef unsigned short UWORD;   // Unsigned 16 bit quantity (WIN=SHORT)
-#ifndef _WINDOWS_
+#if !defined(WIN32)
 typedef signed   short WORD;    // Signed   16 bit quantity
 #endif
 typedef BYTE           UBYTE;    // Used in some 3rd party code
index dc1a1eee91ee0d89ada604d1c3ebb3c1b2fc6a69..0eedfc1cb0e7724e37813eeb13f80741688b3af6 100644 (file)
--- a/general.h
+++ b/general.h
@@ -35,9 +35,6 @@
 
 /* the general house keeping structure definition */
 typedef struct {
-    /* The flight gear "root" directory */
-    char *root_dir;
-
     /* Last frame rate measurement */
     double frame_rate;
     double frames[FG_FRAME_RATE_HISTORY];
@@ -50,9 +47,13 @@ extern fgGENERAL general;
 
 
 /* $Log$
-/* Revision 1.5  1998/05/07 23:03:17  curt
-/* Lowered size of frame rate history buffer.
+/* Revision 1.6  1998/05/13 18:23:46  curt
+/* fg_typedefs.h: updated version by Charlie Hotchkiss
+/* general.h: moved fg_root info to fgOPTIONS structure.
 /*
+ * Revision 1.5  1998/05/07 23:03:17  curt
+ * Lowered size of frame rate history buffer.
+ *
  * Revision 1.4  1998/05/06 03:14:30  curt
  * Added a shared frame rate counter.
  *