]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/main.hxx
Merge /u/userid-1550991/flightgear/ branch next into next
[flightgear.git] / src / Main / main.hxx
index b15846b5a9a15ec3f5234d02c294c09bf8f34d3e..8165aaddeb428618c833cf640c4fb80ad1cd802a 100644 (file)
@@ -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