X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Fmain.hxx;h=8165aaddeb428618c833cf640c4fb80ad1cd802a;hb=e5fa1a5ab15b0466dbe8867b3edaf564a89b7596;hp=b15846b5a9a15ec3f5234d02c294c09bf8f34d3e;hpb=a6db6d89ff41a619569e6433409e8bf62ff98499;p=flightgear.git diff --git a/src/Main/main.hxx b/src/Main/main.hxx index b15846b5a..8165aadde 100644 --- a/src/Main/main.hxx +++ b/src/Main/main.hxx @@ -1,18 +1,30 @@ +// main.hxx -- top level sim routines +// +// Written by Curtis Olson, started May 1997. +// +// Copyright (C) 1997 - 2002 Curtis L. Olson - http://www.flightgear.org/~curt +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License as +// published by the Free Software Foundation; either version 2 of the +// License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, but +// WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #ifndef __FG_MAIN_HXX #define __FG_MAIN_HXX 1 -void fgUpdateTimeDepCalcs(); +int fgMainInit( int argc, char **argv ); -bool fgMainInit( int argc, char **argv ); +void fgResetIdleState(); - -extern int idle_state; -extern long global_multi_loop; -extern double delta_time_sec; - -extern char *homedir; -extern char *hostname; -extern bool free_hostname; +extern std::string hostname; #endif