mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 21:49:38 +08:00
860d1ddfd4
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@419 bbd45198-f89e-11dd-88c7-29a3b14d5316
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
|