src/driver.h
author rubidium
Tue, 06 Mar 2007 18:03:06 +0000
changeset 6226 e2e9607ea3cc
parent 6125 a6fff965707c
child 7170 923946ec324f
permissions -rw-r--r--
(svn r9027) -Fix [FS#664]: desync caused by buffer overrun.
/* $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 */