mp3.h 223 B

123456789101112
  1. #ifndef __MP3_H__
  2. #define __MP3_H__
  3. #include "player_ui.h"
  4. void mp3_get_info(const char* filename, struct tag_info* info);
  5. void mp3(char* filename);
  6. void http_mp3(char* url);
  7. void ice_mp3(char* url);
  8. #endif