(svn r1618) () -> (void)

This commit is contained in:
tron 2005-01-23 16:33:09 +00:00
parent 1a92141896
commit 88c10e02ff
2 changed files with 7 additions and 7 deletions

12
w32dm.c
View File

@ -33,10 +33,10 @@
#include "hal.h"
static char * DMusicMidiStart(char **parm);
static void DMusicMidiStop();
static void DMusicMidiStop(void);
static void DMusicMidiPlaySong(const char *filename);
static void DMusicMidiStopSong();
static bool DMusicMidiIsSongPlaying();
static void DMusicMidiStopSong(void);
static bool DMusicMidiIsSongPlaying(void);
static void DMusicMidiSetVolume(byte vol);
const HalMusicDriver _dmusic_midi_driver = {
@ -68,7 +68,7 @@ static char * DMusicMidiStart(char **parm)
return("Unable to initialize DirectMusic");
}
static void DMusicMidiStop()
static void DMusicMidiStop(void)
{
StopSegment();
}
@ -91,12 +91,12 @@ static void DMusicMidiPlaySong(const char *filename)
seeking = true;
}
static void DMusicMidiStopSong()
static void DMusicMidiStopSong(void)
{
StopSegment();
}
static bool DMusicMidiIsSongPlaying()
static bool DMusicMidiIsSongPlaying(void)
{
if ((IsSegmentPlaying() == 0) && (seeking == true)) // Not the nicest code, but there is a
return(true); // short delay before playing actually

View File

@ -93,7 +93,7 @@ static const char ole_files[] =
static ProcPtrs _proc;
static bool LoadOleDLL()
static bool LoadOleDLL(void)
{
if (_proc.CoCreateInstance != NULL)
return true;