sound/null_s.c
author tron
Sat, 23 Jul 2005 15:48:00 +0000
changeset 2174 24d868f1c576
child 2186 db48cf29b983
permissions -rw-r--r--
(svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
#include "stdafx.h"
#include "openttd.h"
#include "sound/null_s.h"

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

const HalSoundDriver _null_sound_driver = {
	NullSoundStart,
	NullSoundStop,
};