sound/null_s.c
author miham
Wed, 03 Aug 2005 17:45:36 +0000
changeset 2277 f13e8a0d5bf4
parent 2189 5cdc11ffeaa4
permissions -rw-r--r--
(svn r2801) [Translators] Updated translations to 20050803 (2 lang(s))
/* $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,
};