picodrive/platform/common/mp3_dummy.c
2013-07-01 03:40:31 +03:00

20 lines
308 B
C

/*
* dummy/none mp3 code
* (C) notaz, 2013
*
* This work is licensed under the terms of MAME license.
* See COPYING file in the top-level directory.
*/
#include <stdio.h>
#include "mp3.h"
int mp3dec_start(void)
{
return -1;
}
int mp3dec_decode(FILE *f, int *file_pos, int file_len)
{
return -1;
}