diff options
Diffstat (limited to 'src/driver.h')
-rw-r--r-- | src/driver.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/driver.h b/src/driver.h new file mode 100644 index 000000000..4e25714f7 --- /dev/null +++ b/src/driver.h @@ -0,0 +1,13 @@ +/* $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 */ |