X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=Time%2Ffg_timer.h;h=e6bd25e84d0e8d031d99abc25e783f4b404d48f2;hb=f1ec224b73dc81dc487836bbd45b6e21c10df0a5;hp=7205690aedf0db8a8768969b9cad194d818dad38;hpb=a9fdc0e3415420bdfd2d90531447ddeb4390c2ad;p=flightgear.git diff --git a/Time/fg_timer.h b/Time/fg_timer.h index 7205690ae..e6bd25e84 100644 --- a/Time/fg_timer.h +++ b/Time/fg_timer.h @@ -33,20 +33,24 @@ extern unsigned long int fgSimTime; /* this routine initializes the interval timer to generate a SIGALRM * after the specified interval (dt) the function f() will be called * at each signal */ -void fgTimerInit(float dt, void (*f)()); +void fgTimerInit( float dt, void (*f)( void ) ); /* This function returns the number of milleseconds since the last time it was called. */ -int fgGetTimeInterval(); +int fgGetTimeInterval( void ); #endif /* FG_TIMER_H */ /* $Log$ -/* Revision 1.2 1997/07/23 21:52:27 curt -/* Put comments around the text after an #endif for increased portability. +/* Revision 1.3 1998/01/19 18:40:40 curt +/* Tons of little changes to clean up the code and to remove fatal errors +/* when building with the c++ compiler. /* + * 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. *