sound/null_s.c
author tron
Fri, 09 Sep 2005 07:08:27 +0000
changeset 2401 7e90848c440d
parent 2189 5cdc11ffeaa4
permissions -rw-r--r--
(svn r2927) Fix/remove stale information, line breaks, inform FreeBSD users about the required ports
/* $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,
};