src/sound/null_s.cpp
changeset 7666 a5fccd76176a
parent 6573 7624f942237f
child 10429 1b99254f9607
equal deleted inserted replaced
7665:ded23f6bc34c 7666:a5fccd76176a
     1 /* $Id$ */
     1 /* $Id$ */
     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 FSoundDriver_Null iFSoundDriver_Null;
     7 static void NullSoundStop() {}
       
     8 
       
     9 const HalSoundDriver _null_sound_driver = {
       
    10 	NullSoundStart,
       
    11 	NullSoundStop,
       
    12 };