summaryrefslogtreecommitdiff
path: root/driver.h
diff options
context:
space:
mode:
Diffstat (limited to 'driver.h')
-rw-r--r--driver.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/driver.h b/driver.h
new file mode 100644
index 000000000..cfef360a6
--- /dev/null
+++ b/driver.h
@@ -0,0 +1,11 @@
+#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