2009-05-13 15:56:16 +00:00
|
|
|
#ifndef _MP3S_H_
|
|
|
|
#define _MP3S_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
2009-05-20 00:03:43 +00:00
|
|
|
char mp3files[300][70];
|
2009-05-13 15:56:16 +00:00
|
|
|
|
|
|
|
void StopMp3();
|
|
|
|
void SetMp3Volume(u32 vol);
|
|
|
|
int PlayMp3(char * path);
|
|
|
|
int OpenMp3(char * path);
|
|
|
|
void CloseMp3();
|
|
|
|
int GetFiles(char * mp3path);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|