src/driver.h
author maedhros
Mon, 16 Apr 2007 10:59:35 +0000
changeset 6472 f1e70dc23fac
parent 6125 a6fff965707c
child 7170 923946ec324f
permissions -rw-r--r--
(svn r9648) -Codechange: Use HASBIT directly rather than shifting and then using it on the first bit.
/* $Id$ */

/** @file driver.h */

#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 */