From 126fed74d63e8ebbabff2fa9dccf10fdd5a68333 Mon Sep 17 00:00:00 2001 From: tron Date: Sat, 23 Jul 2005 15:16:57 +0000 Subject: (svn r2685) -Codechange: Split the music/sound/video drivers into separate files and move them into subfolders. This results in shorter and hopefully easier to maintain files. Note: I had to change paths in #include statements of some unrelated files, because I added the ottd base directory to the include path (-I.) --- driver.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 driver.h (limited to 'driver.h') 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 -- cgit v1.2.3-54-g00ecf