tagz.h 429 B

123456789101112131415
  1. #ifndef NULLSOFT_WINAMP_TAGZ_H
  2. #define NULLSOFT_WINAMP_TAGZ_H
  3. #include "wa_ipc.h"
  4. void FormatTitle(waFormatTitle *format);
  5. void FormatTitleExtended(waFormatTitleExtended *format);
  6. int FormatTitle(waHookTitleStructW *hts);
  7. namespace Winamp
  8. {
  9. wchar_t *GetTag(const wchar_t *tag, const wchar_t *filename); // for simple tags
  10. wchar_t *GetExtendedTag(const wchar_t *tag, const wchar_t *filename); //return 0 if not found
  11. }
  12. #endif