X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=Main%2Fviews.h;h=6df74ec5f6a0397b212ca0551a5b56e85dc69fd0;hb=28fad1d2964d4f7122fff0a3d479e15fdb2e8be8;hp=7c7ed834b5bd6389c49c32889e9433b59da879e4;hpb=871ee408fa93b6ef926de706fc119fdbca0025e7;p=flightgear.git diff --git a/Main/views.h b/Main/views.h index 7c7ed834b..6df74ec5f 100644 --- a/Main/views.h +++ b/Main/views.h @@ -34,28 +34,32 @@ /* Define a structure containing view information */ -struct VIEW { +struct fgVIEW { struct fgCartesianPoint view_pos; MAT3vec local_up, view_up, view_forward; double view_offset, goal_view_offset; }; -extern struct VIEW current_view; +extern struct fgVIEW current_view; /* Initialize a view structure */ -void fgViewInit(struct VIEW *v); +void fgViewInit(struct fgVIEW *v); /* Update the view parameters */ -void fgViewUpdate(struct FLIGHT *f, struct VIEW *v); +void fgViewUpdate(struct fgFLIGHT *f, struct fgVIEW *v); #endif /* VIEWS_H */ /* $Log$ -/* Revision 1.1 1997/08/27 21:31:18 curt -/* Initial revision. +/* Revision 1.2 1997/12/10 22:37:48 curt +/* Prepended "fg" on the name of all global structures that didn't have it yet. +/* i.e. "struct WEATHER {}" became "struct fgWEATHER {}" /* + * Revision 1.1 1997/08/27 21:31:18 curt + * Initial revision. + * */