1
0
Fork 0

Put comments around the text after an #endif for increased portability.

This commit is contained in:
curt 1997-07-23 21:52:10 +00:00
parent 450dd6d45a
commit 417048636f
19 changed files with 117 additions and 55 deletions

View file

@ -47,13 +47,16 @@ extern struct aircraft_params current_aircraft;
void aircraft_debug(int type);
#endif AIRCRAFT_H
#endif /* AIRCRAFT_H */
/* $Log$
/* Revision 1.3 1997/06/21 17:12:42 curt
/* Capitalized subdirectory names.
/* Revision 1.4 1997/07/23 21:52:17 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.3 1997/06/21 17:12:42 curt
* Capitalized subdirectory names.
*
* Revision 1.2 1997/05/23 15:40:30 curt
* Added GNU copyright headers.
*

View file

@ -77,13 +77,16 @@ void fgThrottleSet(int engine, double pos);
#endif CONTROLS_H
#endif /* CONTROLS_H */
/* $Log$
/* Revision 1.3 1997/05/31 19:16:27 curt
/* Elevator trim added.
/* Revision 1.4 1997/07/23 21:52:18 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.3 1997/05/31 19:16:27 curt
* Elevator trim added.
*
* Revision 1.2 1997/05/23 15:40:33 curt
* Added GNU copyright headers.
*

View file

@ -32,7 +32,7 @@
#include "LaRCsim/ls_interface.h"
/* Define the various supported flight models (not all implemented) */
/* Define the various supported flight models (most not yet implemented) */
#define FG_LARCSIM 0
#define FG_ACM 1
#define FG_HELICOPTER 2
@ -41,6 +41,7 @@
#define FG_PARACHUTE 5
#define FG_SLEW 6
#define FG_EXTERN_GPS 7
#define FG_EXTERN_NET 8
/* Define a structure containing the shared flight model parameters */
@ -405,14 +406,17 @@ int fgFlightModelInit(int model, struct flight_params *f, double dt);
int fgFlightModelUpdate(int model, struct flight_params *f, int multiloop);
#endif FLIGHT_H
#endif /* FLIGHT_H */
/* $Log$
/* Revision 1.6 1997/06/21 17:52:22 curt
/* Continue directory shuffling ... everything should be compilable/runnable
/* again.
/* Revision 1.7 1997/07/23 21:52:19 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.6 1997/06/21 17:52:22 curt
* Continue directory shuffling ... everything should be compilable/runnable
* again.
*
* Revision 1.5 1997/06/21 17:12:49 curt
* Capitalized subdirectory names.
*

View file

@ -38,13 +38,16 @@ int fgLaRCsimInit(double dt);
int fgLaRCsimUpdate(int multiloop);
#endif LS_INTERFACE_H
#endif /* LS_INTERFACE_H */
/* $Log$
/* Revision 1.2 1997/05/29 22:39:59 curt
/* Working on incorporating the LaRCsim flight model.
/* Revision 1.3 1997/07/23 21:52:20 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.2 1997/05/29 22:39:59 curt
* Working on incorporating the LaRCsim flight model.
*
* Revision 1.1 1997/05/29 00:09:58 curt
* Initial Flight Gear revision.
*

View file

@ -35,14 +35,17 @@
GLenum GLTKkey(int k, GLenum mask);
#endif GLTKKEY_H
#endif /* GLTKKEY_H */
/* $Log$
/* Revision 1.2 1997/05/23 15:40:24 curt
/* Added GNU copyright headers.
/* Fog now works!
/* Revision 1.3 1997/07/23 21:52:22 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.2 1997/05/23 15:40:24 curt
* Added GNU copyright headers.
* Fog now works!
*
* Revision 1.1 1997/05/21 15:57:49 curt
* Renamed due to added GLUT support.
*

View file

@ -40,13 +40,16 @@ void GLUTkey(unsigned char k, int x, int y);
void GLUTspecialkey(int k, int x, int y);
#endif GLUTKEY_H
#endif /* GLUTKEY_H */
/* $Log$
/* Revision 1.4 1997/06/02 03:40:06 curt
/* A tiny bit more view tweaking.
/* Revision 1.5 1997/07/23 21:52:23 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.4 1997/06/02 03:40:06 curt
* A tiny bit more view tweaking.
*
* Revision 1.3 1997/05/31 04:13:52 curt
* WE CAN NOW FLY!!!
*

View file

@ -26,7 +26,7 @@
TARGET = libScenery.a
CFILES = common.c mesh.c scenery.c scanner.c parser.c geometry.c
CFILES = chunkmgr.c common.c mesh.c scenery.c scanner.c parser.c geometry.c
HFILES =
OFILES = $(CFILES:.c=.o)
@ -75,6 +75,9 @@ scanner.o: scanner.c
parser.o: parser.c
$(CC) $(CFLAGS) -c parser.c -o $@
chunkmgr.o:
$(CC) $(CFLAGS) -c chunkmgr.c -o $@
common.o:
$(CC) $(CFLAGS) -c common.c -o $@
@ -89,6 +92,9 @@ geometry.o:
#---------------------------------------------------------------------------
# $Log$
# Revision 1.17 1997/07/23 21:52:23 curt
# Put comments around the text after an #endif for increased portability.
#
# Revision 1.16 1997/07/20 02:19:11 curt
# First stab at a system to generate os2 makefiles automatically.
#

View file

@ -36,13 +36,16 @@
char *strip_quotes(char *s);
#endif COMMON_H
#endif /* COMMON_H */
/* $Log$
/* Revision 1.2 1997/05/23 15:40:41 curt
/* Added GNU copyright headers.
/* Revision 1.3 1997/07/23 21:52:24 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.2 1997/05/23 15:40:41 curt
* Added GNU copyright headers.
*
* Revision 1.1 1997/05/16 16:07:04 curt
* Initial revision.
*

View file

@ -1,3 +1,4 @@
chunkmgr.o: chunkmgr.c chunkmgr.h mesh.h
common.o: common.c common.h
geometry.o: geometry.c geometry.h mesh.h
mesh.o: mesh.c ../constants.h scenery.h mesh.h common.h

View file

@ -52,13 +52,16 @@ void vrmlHandleGeometry();
int vrmlFreeGeometry();
#endif GEOMETRY_H
#endif /* GEOMETRY_H */
/* $Log$
/* Revision 1.1 1997/06/29 21:16:48 curt
/* More twiddling with the Scenery Management system.
/* Revision 1.2 1997/07/23 21:52:25 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.1 1997/06/29 21:16:48 curt
* More twiddling with the Scenery Management system.
*
* Revision 1.1 1997/06/22 21:42:35 curt
* Initial revision of VRML (subset) parser.
*

View file

@ -72,13 +72,16 @@ void mesh_do_it(struct mesh *m);
double mesh_altitude(double lon, double lat);
#endif MESH_H
#endif /* MESH_H */
/* $Log$
/* Revision 1.4 1997/07/08 18:20:14 curt
/* Working on establishing a hard ground.
/* Revision 1.5 1997/07/23 21:52:25 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.4 1997/07/08 18:20:14 curt
* Working on establishing a hard ground.
*
* Revision 1.3 1997/06/22 21:44:41 curt
* Working on intergrating the VRML (subset) parser.
*

View file

@ -31,13 +31,17 @@
/* parse a VRML scenery file */
int fgParseVRML(char *file);
#endif PARSEVRML_H
#endif /* PARSEVRML_H */
/* $Log$
/* Revision 1.1 1997/06/29 21:16:49 curt
/* More twiddling with the Scenery Management system.
/* Revision 1.2 1997/07/23 21:52:26 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.1 1997/06/29 21:16:49 curt
* More twiddling with the Scenery Management system.
*
* Revision 1.1 1997/06/27 02:25:13 curt
* Initial revision.
*

View file

@ -39,21 +39,26 @@ extern struct scenery_params cur_scenery_params;
/* Initialize the Scenery Management system */
void fgSceneryInit();
/* Tell the scenery manager where we are so it can load the proper data, and
* build the proper structures. */
void fgSceneryUpdate(double lon, double lat, double elev);
/* Render out the current scene */
void fgSceneryRender();
#endif SCENERY_H
#endif /* SCENERY_H */
/* $Log$
/* Revision 1.6 1997/07/11 01:30:03 curt
/* More tweaking of terrian floor.
/* Revision 1.7 1997/07/23 21:52:27 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.6 1997/07/11 01:30:03 curt
* More tweaking of terrian floor.
*
* Revision 1.5 1997/06/26 22:14:57 curt
* Beginning work on a scenery management system.
*

View file

@ -75,13 +75,16 @@
#define EPSILON 0.000001
#endif CONSTANTS_H
#endif /* CONSTANTS_H */
/* $Log$
/* Revision 1.6 1997/07/21 14:45:01 curt
/* Minor tweaks.
/* Revision 1.7 1997/07/23 21:52:10 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.6 1997/07/21 14:45:01 curt
* Minor tweaks.
*
* Revision 1.5 1997/07/19 23:04:46 curt
* Added an initial weather section.
*

View file

@ -32,13 +32,16 @@
#define FG_MAX_ENGINES 10
#endif LIMITS_H
#endif /* LIMITS_H */
/* $Log$
/* Revision 1.3 1997/05/31 19:16:24 curt
/* Elevator trim added.
/* Revision 1.4 1997/07/23 21:52:11 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.3 1997/05/31 19:16:24 curt
* Elevator trim added.
*
* Revision 1.2 1997/05/27 17:48:10 curt
* Added GNU copyright.
*

View file

@ -40,11 +40,14 @@ struct fgGeodeticPoint {
};
#endif TYPES_H
#endif /* TYPES_H */
/* $Log$
/* Revision 1.1 1997/07/07 21:03:30 curt
/* Initial revision.
/* Revision 1.2 1997/07/23 21:52:12 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.1 1997/07/07 21:03:30 curt
* Initial revision.
*
*/

View file

@ -35,13 +35,16 @@ void fgSlewInit(double pos_x, double pos_y, double pos_z, double heading);
void fgSlewUpdate();
#endif SLEW_H
#endif /* SLEW_H */
/* $Log$
/* Revision 1.1 1997/05/29 02:29:43 curt
/* Moved to their own directory.
/* Revision 1.2 1997/07/23 21:52:20 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.1 1997/05/29 02:29:43 curt
* Moved to their own directory.
*
* Revision 1.2 1997/05/23 15:40:38 curt
* Added GNU copyright headers.
*

View file

@ -40,11 +40,14 @@ void fgTimerInit(float dt, void (*f)());
int fgGetTimeInterval();
#endif FG_TIMER_H
#endif /* FG_TIMER_H */
/* $Log$
/* Revision 1.1 1997/06/16 19:24:20 curt
/* Initial revision.
/* Revision 1.2 1997/07/23 21:52:27 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.1 1997/06/16 19:24:20 curt
* Initial revision.
*
*/

View file

@ -35,11 +35,14 @@ void fgWeatherInit(void);
void fgWeatherUpdate(double lon, double lat, double alt);
#endif WEATHER_H
#endif /* WEATHER_H */
/* $Log$
/* Revision 1.1 1997/07/19 23:03:58 curt
/* Initial revision.
/* Revision 1.2 1997/07/23 21:52:30 curt
/* Put comments around the text after an #endif for increased portability.
/*
* Revision 1.1 1997/07/19 23:03:58 curt
* Initial revision.
*
*/