sound/null_s.c
author truelight
Thu, 13 Jul 2006 18:34:45 +0000
changeset 4135 776e8f849206
parent 2189 5cdc11ffeaa4
permissions -rw-r--r--
(svn r5493) -Fix: 'grep -o' isn't supported on all targets. 'sed' is, so use thatone (tokai)
/* $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,
};