]> git.mxchange.org Git - flightgear.git/blobdiff - Scenery/scenery.h
Merged in make system changes from Bob Kuehne <rpk@sgi.com>
[flightgear.git] / Scenery / scenery.h
index 869d893e80c366a790bb4ec53049516ea405a8d0..b47b27cfdd0ef12b6a428e1d01b8015171b63e97 100644 (file)
@@ -28,7 +28,7 @@
 #define SCENERY_H
 
 
-#include "../Include/types.h"
+#include <Include/types.h>
 
 
 /* Define a structure containing global scenery parameters */
@@ -47,7 +47,7 @@ extern struct fgSCENERY scenery;
 
 
 /* Initialize the Scenery Management system */
-void fgSceneryInit();
+void fgSceneryInit( void );
 
 
 /* Tell the scenery manager where we are so it can load the proper data, and
@@ -56,17 +56,25 @@ void fgSceneryUpdate(double lon, double lat, double elev);
 
 
 /* Render out the current scene */
-void fgSceneryRender();
+void fgSceneryRender( void );
 
 
 #endif /* SCENERY_H */
 
 
 /* $Log$
-/* Revision 1.12  1997/12/15 23:55:03  curt
-/* Add xgl wrappers for debugging.
-/* Generate terrain normals on the fly.
+/* Revision 1.14  1998/01/19 19:27:17  curt
+/* Merged in make system changes from Bob Kuehne <rpk@sgi.com>
+/* This should simplify things tremendously.
 /*
+ * Revision 1.13  1998/01/19 18:40:38  curt
+ * Tons of little changes to clean up the code and to remove fatal errors
+ * when building with the c++ compiler.
+ *
+ * Revision 1.12  1997/12/15 23:55:03  curt
+ * Add xgl wrappers for debugging.
+ * Generate terrain normals on the fly.
+ *
  * Revision 1.11  1997/12/10 22:37:52  curt
  * Prepended "fg" on the name of all global structures that didn't have it yet.
  * i.e. "struct WEATHER {}" became "struct fgWEATHER {}"