add a hack for Decap Attack
[picodrive.git] / platform / common / mp3_dummy.c
CommitLineData
636d5f25 1/*
2 * dummy/none mp3 code
3 * (C) notaz, 2013
4 *
5 * This work is licensed under the terms of MAME license.
6 * See COPYING file in the top-level directory.
7 */
8
fc11dd05 9#include <stdio.h>
636d5f25 10#include "mp3.h"
636d5f25 11
75a30842 12int mp3dec_start(FILE *f, int fpos_start)
636d5f25 13{
14 return -1;
15}
16
fc11dd05 17int mp3dec_decode(FILE *f, int *file_pos, int file_len)
636d5f25 18{
fc11dd05 19 return -1;
636d5f25 20}