src/sound/null_s.cpp
author KUDr
Wed, 10 Jan 2007 18:12:09 +0000
changeset 5835 e0ff603ae0b7
parent 5726 src/sound/null_s.c@8f399788f6c9
child 6253 23983700e3d7
permissions -rw-r--r--
(svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
/* $Id$ */

#include "../stdafx.h"
#include "../openttd.h"
#include "null_s.h"

static const char *NullSoundStart(const char * const *parm) { return NULL; }
static void NullSoundStop(void) {}

const HalSoundDriver _null_sound_driver = {
	NullSoundStart,
	NullSoundStop,
};