123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef ID3LIB_MISC_SUPPORT_H
- #define ID3LIB_MISC_SUPPORT_H
- #include <wchar.h>
- #include <string.h>
- #include "id3_types.h"
- #include "id3_tag.h"
- void ID3_AddTitle(ID3_Tag *tag, char *text);
- void ID3_AddTitle_Latin(ID3_Tag *tag, char *text);
- void ID3_AddArtist(ID3_Tag *tag, char *text);
- void ID3_AddArtist_Latin(ID3_Tag *tag, char *text);
- void ID3_AddAlbum(ID3_Tag *tag, char *text);
- void ID3_AddAlbum_Latin(ID3_Tag *tag, char *text);
- void ID3_AddLyrics(ID3_Tag *tag, char *text);
- int ID3_UnicodeToLocal(char *local, const wchar_t *unicode, luint len, int inLen=-1);
- int ID3_UnicodeToLatin(char *latin, const wchar_t *unicode, luint len, int inLen=-1);
- int ID3_UnicodeToUTF8(char *latin, const wchar_t *unicode, luint len, int inLen=-1);
- #endif
|