Code: Select all
int Music_player(char* fileName)
{
if(inited==1){ MP3_End(); inited=0; }
MP3_Init(1);
MP3_Load(fileName);
MP3_Play();
inited=1;
return 0;
}
However if there is another simple MP3 lib I can use it!