aboutsummaryrefslogtreecommitdiff
path: root/Src/Winamp/feeds.h
blob: de991117b29f25cf5a68dfefd1e022614eca83f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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