TORCS  1.3.9
The Open Racing Car Simulator
controlconfig.h
Go to the documentation of this file.
1 /***************************************************************************
2 
3  file : controlconfig.h
4  created : Wed Mar 12 22:09:01 CET 2003
5  copyright : (C) 2003-2014 by Eric Espie, Bernhard Wymann
6  email : eric.espie@torcs.org
7  version : $Id$
8 
9  ***************************************************************************/
10 
11 /***************************************************************************
12  * *
13  * This program is free software; you can redistribute it and/or modify *
14  * it under the terms of the GNU General Public License as published by *
15  * the Free Software Foundation; either version 2 of the License, or *
16  * (at your option) any later version. *
17  * *
18  ***************************************************************************/
19 
26 #ifndef _CONTROLCONFIG_H_
27 #define _CONTROLCONFIG_H_
28 
29 extern void *TorcsControlMenuInit(void *prevMenu, int index);
30 
31 
32 typedef struct
33 {
34  const char *name;
36  int Id;
37  const char *minName;
38  float min;
39  const char *maxName;
40  float max;
41  const char *powName;
42  float pow;
44 } tCmdInfo;
45 
46 #endif /* _CONTROLCONFIG_H_ */
47 
48 
49 
float min
Definition: controlconfig.h:38
const char * maxName
Definition: controlconfig.h:39
const char * minName
Definition: controlconfig.h:37
int keyboardPossible
Definition: controlconfig.h:43
const char * powName
Definition: controlconfig.h:41
float max
Definition: controlconfig.h:40
tCtrlRef ref
Definition: controlconfig.h:35
const char * name
Definition: controlconfig.h:34
void * TorcsControlMenuInit(void *prevMenu, int index)
float pow
Definition: controlconfig.h:42