00001 //*** Platform_NULL_Sound.cpp *** 00002 00003 #include "Platform_NULL_Sound.h" 00004 #include "Platform_NULL_Sound_SoundStream.h" 00005 00006 00007 //*** Constructor *** 00008 00009 Platform_NULL_Sound::Platform_NULL_Sound() 00010 { 00011 } 00012 00013 00014 //*** CreateSoundStream *** 00015 00016 Platform_Sound_SoundStream* Platform_NULL_Sound::CreateSoundStream(int channels, int frequency, int bitsPerSample, int size) 00017 { 00018 return new Platform_NULL_Sound_SoundStream(channels,frequency,bitsPerSample,size); 00019 } 00020