Files @ r2189:2faee8988cf3
Branch filter:

Location: cpp/openttd-patchpack/source/sound/null_s.c

tron
(svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
/* $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,
};