blob: 59824ce971af3aaa9fdabb6a9089bee4e8451aa3 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#include "main.h"
#include "feeds.h"
const static wchar_t VID_Info[] = L"VID_Info";
int VideoTextFeed::hasFeed(const wchar_t *name)
{
if (!_wcsicmp(name, VID_Info))
return 1;
else
return 0;
}
//extern "C" extern char vidoutbuf_save[1024];
static wchar_t wideVideo[1024]=L"";
const wchar_t *VideoTextFeed::getFeedText(const wchar_t *name)
{
return wideVideo;
}
const wchar_t *VideoTextFeed::getFeedDescription(const wchar_t *name)
{
return L"Video Info Text";
}
void VideoTextFeed::UpdateText(const wchar_t *text, int length)
{
if (!text)
text=L"";
wideVideo[1023]=0;
StringCchCopyW(wideVideo, 1024, text);
CallViewers(VID_Info, text, length);
}
// --------
const static wchar_t PE_Info[] = L"PE_Info";
int PlaylistTextFeed::hasFeed(const wchar_t *name)
{
if (!_wcsicmp(name, PE_Info))
return 1;
else
return 0;
}
const wchar_t *PlaylistTextFeed::getFeedText(const wchar_t *name)
{
return playlistStr;
}
const wchar_t *PlaylistTextFeed::getFeedDescription(const wchar_t *name)
{
return L"Playlist Info Text";
}
void PlaylistTextFeed::UpdateText(const wchar_t *text, int length)
{
CallViewers(PE_Info, text, length);
}
|