src/sound/null_s.cpp
author belugas
Sun, 14 Jan 2007 01:27:19 +0000
changeset 5653 d8847aa3a0c8
parent 5584 1111b4d36e35
child 5988 1aabf94612c6
permissions -rw-r--r--
(svn r8112) -Codechange: MSVC solution files will now make it so that openttd will be THE startup project.
Take note that it will only be the case on a clean checkout, without any other files than those coming from that checkout.
/* $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,
};