feeds.h 587 B

123456789101112131415161718192021222324
  1. #ifndef NULLSOFT_WINAMP_FEEDS_H
  2. #define NULLSOFT_WINAMP_FEEDS_H
  3. #include "FeedBase.h"
  4. class VideoTextFeed : public FeedBase
  5. {
  6. public:
  7. int hasFeed(const wchar_t *name);
  8. const wchar_t *getFeedText(const wchar_t *name);
  9. const wchar_t *getFeedDescription(const wchar_t *name);
  10. void UpdateText(const wchar_t *text, int length);
  11. };
  12. class PlaylistTextFeed : public FeedBase
  13. {
  14. public:
  15. int hasFeed(const wchar_t *name);
  16. const wchar_t *getFeedText(const wchar_t *name);
  17. const wchar_t *getFeedDescription(const wchar_t *name);
  18. void UpdateText(const wchar_t *text, int length);
  19. };
  20. #endif