driver.h
author peter1138
Wed, 19 Apr 2006 07:17:00 +0000
changeset 3587 c434d5c3dcaa
parent 2832 5a679de4b9f7
child 5170 817550aa5a5f
permissions -rw-r--r--
(svn r4473) - Newstations:
- Alter parameters of CMD_BUILD_RAILROAD_STATION to accept a custom station class and id.
- Add a dynamically allocated list of custom stations that the SpecIndex (m4) references.
/* $Id$ */

#ifndef DRIVER_H
#define DRIVER_H

void LoadDriver(int driver, const char *name);

bool GetDriverParamBool(const char* const* parm, const char* name);
int GetDriverParamInt(const char* const* parm, const char* name, int def);

char *GetDriverList(char* p);

#endif /* DRIVER_H */