src/sound/null_s.cpp
branchnoai
changeset 9631 8a2d1c2ceb88
parent 6573 7624f942237f
child 10429 1b99254f9607
equal deleted inserted replaced
9630:550db5cefcc2 9631:8a2d1c2ceb88
     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 };