summaryrefslogtreecommitdiff
path: root/src/sound/null_s.cpp
blob: e2c5ce2d871294c72a4b478dca8298f2d77ebf05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* $Id$ */

#include "../stdafx.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,
};