driver.h
author celestar
Thu, 28 Jul 2005 06:09:15 +0000
changeset 2214 75d037f8dcc4
parent 2186 461a2aff3486
child 2436 177cb6a8339f
permissions -rw-r--r--
(svn r2732) -Codechange: Cleaned the order flags some more. Hit some inconsistencies while trying to locate bug 1244167
/* $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);

void GetDriverList(char* p);

#endif