From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/Winamp/feeds.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Src/Winamp/feeds.h (limited to 'Src/Winamp/feeds.h') diff --git a/Src/Winamp/feeds.h b/Src/Winamp/feeds.h new file mode 100644 index 00000000..de991117 --- /dev/null +++ b/Src/Winamp/feeds.h @@ -0,0 +1,24 @@ +#ifndef NULLSOFT_WINAMP_FEEDS_H +#define NULLSOFT_WINAMP_FEEDS_H + +#include "FeedBase.h" + +class VideoTextFeed : public FeedBase +{ +public: + int hasFeed(const wchar_t *name); + const wchar_t *getFeedText(const wchar_t *name); + const wchar_t *getFeedDescription(const wchar_t *name); + void UpdateText(const wchar_t *text, int length); +}; + +class PlaylistTextFeed : public FeedBase +{ +public: + int hasFeed(const wchar_t *name); + const wchar_t *getFeedText(const wchar_t *name); + const wchar_t *getFeedDescription(const wchar_t *name); + void UpdateText(const wchar_t *text, int length); +}; + +#endif \ No newline at end of file -- cgit