view src/sound/null_s.cpp @ 5584:4b26bd55bd24 draft

(svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
author KUDr <KUDr@openttd.org>
date Wed, 10 Jan 2007 18:12:09 +0000 (2007-01-10)
parents
children 067aeca4413d
line wrap: on
line source
/* $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,
};