summaryrefslogtreecommitdiff
path: root/src/driver.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/driver.h')
-rw-r--r--src/driver.h13
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 */