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.
41 lines
363 B
41 lines
363 B
|
|
#include <stdlib.h> |
|
#include "sound.h" |
|
|
|
static int init(struct options *options) |
|
{ |
|
return 0; |
|
} |
|
|
|
static void play(void *b, int i) |
|
{ |
|
} |
|
|
|
static void deinit() |
|
{ |
|
} |
|
|
|
static void flush() |
|
{ |
|
} |
|
|
|
static void onpause() |
|
{ |
|
} |
|
|
|
static void onresume() |
|
{ |
|
} |
|
|
|
|
|
struct sound_driver sound_null = { |
|
"null", |
|
"No output", |
|
NULL, |
|
init, |
|
deinit, |
|
play, |
|
flush, |
|
onpause, |
|
onresume |
|
};
|
|
|