src/driver.h
author belugas
Sun, 14 Jan 2007 01:27:19 +0000
changeset 5653 d8847aa3a0c8
parent 5475 2e6990a8c7c4
child 6125 a6fff965707c
permissions -rw-r--r--
(svn r8112) -Codechange: MSVC solution files will now make it so that openttd will be THE startup project.
Take note that it will only be the case on a clean checkout, without any other files than those coming from that checkout.
/* $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, const char *last);

#endif /* DRIVER_H */