mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-07 12:04:35 +08:00
13 lines
223 B
C
13 lines
223 B
C
|
#ifndef __MP3_H__
|
||
|
#define __MP3_H__
|
||
|
|
||
|
#include "player_ui.h"
|
||
|
|
||
|
void mp3_get_info(const char* filename, struct tag_info* info);
|
||
|
|
||
|
void mp3(char* filename);
|
||
|
void http_mp3(char* url);
|
||
|
void ice_mp3(char* url);
|
||
|
|
||
|
#endif
|