![]() |
torcs - 1.2.2 | ![]() |
00001 /*************************************************************************** 00002 00003 file : tlm.h 00004 created : Sun Mar 19 00:10:19 CET 2000 00005 copyright : (C) 2000 by Eric Espie 00006 email : torcs@free.fr 00007 version : $Id: tlm.h,v 1.2 2002/11/30 19:00:57 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 00020 #ifndef _TLM_H_ 00021 #define _TLM_H_ 00022 00023 extern void TlmInit(tdble ymin, tdble ymax); 00024 extern void TlmNewChannel(const char *name, tdble *var, tdble min, tdble max); 00025 extern void TlmStartMonitoring(const char *filename); 00026 extern void TlmUpdate(double time); 00027 extern void TlmStopMonitoring(void); 00028 extern void TlmShutdown(void); 00029 00030 #endif /* _TLM_H_ */ 00031 00032 00033