src/sound/null_s.cpp
branchgamebalance
changeset 9895 7bd07f43b0e3
parent 6314 f738bcf05ad6
child 6720 35756db7e577
equal deleted inserted replaced
9894:70d78ac95d6c 9895:7bd07f43b0e3
     2 
     2 
     3 #include "../stdafx.h"
     3 #include "../stdafx.h"
     4 #include "null_s.h"
     4 #include "null_s.h"
     5 
     5 
     6 static const char *NullSoundStart(const char * const *parm) { return NULL; }
     6 static const char *NullSoundStart(const char * const *parm) { return NULL; }
     7 static void NullSoundStop(void) {}
     7 static void NullSoundStop() {}
     8 
     8 
     9 const HalSoundDriver _null_sound_driver = {
     9 const HalSoundDriver _null_sound_driver = {
    10 	NullSoundStart,
    10 	NullSoundStart,
    11 	NullSoundStop,
    11 	NullSoundStop,
    12 };
    12 };