summaryrefslogtreecommitdiff
path: root/src/hal.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-03-07 11:47:46 +0000
committerrubidium <rubidium@openttd.org>2007-03-07 11:47:46 +0000
commit36bb92ae241403d61dc7a3e5a1696b615be61395 (patch)
tree5676d0d54be47c40d975fdeb1026317fc2a010db /src/hal.h
parenta69e3b1c45f12ee6f21a4ac1c8a8f8bc0892f226 (diff)
downloadopenttd-36bb92ae241403d61dc7a3e5a1696b615be61395.tar.xz
(svn r9050) -Codechange: Foo(void) -> Foo()
Diffstat (limited to 'src/hal.h')
-rw-r--r--src/hal.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/hal.h b/src/hal.h
index b9494f089..dc8ba321e 100644
--- a/src/hal.h
+++ b/src/hal.h
@@ -7,30 +7,30 @@
typedef struct {
const char *(*start)(const char * const *parm);
- void (*stop)(void);
+ void (*stop)();
} HalCommonDriver;
typedef struct {
const char *(*start)(const char * const *parm);
- void (*stop)(void);
+ void (*stop)();
void (*make_dirty)(int left, int top, int width, int height);
- void (*main_loop)(void);
+ void (*main_loop)();
bool (*change_resolution)(int w, int h);
void (*toggle_fullscreen)(bool fullscreen);
} HalVideoDriver;
typedef struct {
const char *(*start)(const char * const *parm);
- void (*stop)(void);
+ void (*stop)();
} HalSoundDriver;
typedef struct {
const char *(*start)(const char * const *parm);
- void (*stop)(void);
+ void (*stop)();
void (*play_song)(const char *filename);
- void (*stop_song)(void);
- bool (*is_song_playing)(void);
+ void (*stop_song)();
+ bool (*is_song_playing)();
void (*set_volume)(byte vol);
} HalMusicDriver;