You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
651 B
48 lines
651 B
/* Extended Module Player |
|
* Copyright (C) 1996-2016 Claudio Matsuoka and Hipolito Carraro Jr |
|
* |
|
* This file is part of the Extended Module Player and is distributed |
|
* under the terms of the GNU General Public License. See the COPYING |
|
* file for more information. |
|
*/ |
|
|
|
#include <stdlib.h> |
|
#include "sound.h" |
|
|
|
static int init(struct options *options) |
|
{ |
|
return 0; |
|
} |
|
|
|
static void play(void *b, int i) |
|
{ |
|
} |
|
|
|
static void deinit(void) |
|
{ |
|
} |
|
|
|
static void flush(void) |
|
{ |
|
} |
|
|
|
static void onpause(void) |
|
{ |
|
} |
|
|
|
static void onresume(void) |
|
{ |
|
} |
|
|
|
|
|
struct sound_driver sound_null = { |
|
"null", |
|
"null output", |
|
NULL, |
|
init, |
|
deinit, |
|
play, |
|
flush, |
|
onpause, |
|
onresume |
|
};
|
|
|