![]() |
torcs - 1.2.2 | ![]() |
00001 /*************************************************************************** 00002 00003 file : raceinit.h 00004 created : Sat Nov 16 12:24:26 CET 2002 00005 copyright : (C) 2002 by Eric Espié 00006 email : eric.espie@torcs.org 00007 version : $Id: raceinit.h,v 1.2 2003/06/24 21:02:24 torcs Exp $ 00008 00009 ***************************************************************************/ 00010 00011 /*************************************************************************** 00012 * * 00013 * This program is free software; you can redistribute it and/or modify * 00014 * it under the terms of the GNU General Public License as published by * 00015 * the Free Software Foundation; either version 2 of the License, or * 00016 * (at your option) any later version. * 00017 * * 00018 ***************************************************************************/ 00019 00026 #ifndef _RACEINIT_H_ 00027 #define _RACEINIT_H_ 00028 00029 #define RACE_ENG_CFG "config/raceengine.xml" 00030 00031 extern void ReInit(void); 00032 extern void ReShutdown(void); 00033 extern void ReStartNewRace(void * /* dummy */); 00034 extern void ReAddRacemanListButton(void *menuHandle); 00035 extern int ReInitCars(void); 00036 extern int ReInitTrack(void); 00037 extern void ReRaceCleanup(void); 00038 extern void ReRaceCleanDrivers(void); 00039 extern char *ReGetCurrentRaceName(void); 00040 extern char *ReGetPrevRaceName(void); 00041 00042 extern tModList *ReRaceModList; 00043 00044 #endif /* _RACEINIT_H_ */ 00045 00046 00047