summaryrefslogtreecommitdiff
path: root/hal.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-07-28 09:41:09 +0000
committertron <tron@openttd.org>2005-07-28 09:41:09 +0000
commitff61e34d6c62f8fe06b140b54a2d2b7098a6c154 (patch)
tree082c4b30a3afd942355fc1c59fe80fb222b6b690 /hal.h
parent04f4d8237b879e3bb7c61a84cfbb5146cd408111 (diff)
downloadopenttd-ff61e34d6c62f8fe06b140b54a2d2b7098a6c154.tar.xz
(svn r2737) static, const and don't make variables public nobody else needs to know about
Diffstat (limited to 'hal.h')
-rw-r--r--hal.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/hal.h b/hal.h
index ac75a3ebf..ba18f605e 100644
--- a/hal.h
+++ b/hal.h
@@ -37,12 +37,6 @@ typedef struct {
void (*set_volume)(byte vol);
} HalMusicDriver;
-typedef struct {
- const char *name;
- const char *longname;
- const void *drv;
-} DriverDesc;
-
enum {
HALERR_OK = 0,
HALERR_ERROR = 1,
@@ -52,10 +46,6 @@ VARDEF HalMusicDriver *_music_driver;
VARDEF HalSoundDriver *_sound_driver;
VARDEF HalVideoDriver *_video_driver;
-extern const DriverDesc _video_driver_descs[];
-extern const DriverDesc _sound_driver_descs[];
-extern const DriverDesc _music_driver_descs[];
-
enum DriverType {
VIDEO_DRIVER = 0,
SOUND_DRIVER = 1,