blob: 87ac511fc78faa708c7ff1f2d1aa0f95ccb85116 (
plain)
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
|
#include "displayReplaySD.h"
cDisplayReplaySD::cDisplayReplaySD(plexclient::Video* video) : cSkindesignerOsdObject(GetPluginStruct())
{
}
cDisplayReplaySD::~cDisplayReplaySD()
{
}
skindesignerapi::cPluginStructure* cDisplayReplaySD::m_pPlugStructReplay = NULL;
skindesignerapi::cPluginStructure* cDisplayReplaySD::GetPluginStruct()
{
if(m_pPlugStructReplay == NULL) {
m_pPlugStructReplay = new skindesignerapi::cPluginStructure();
m_pPlugStructReplay->name = "plexreplay";
m_pPlugStructReplay->libskindesignerAPIVersion = LIBSKINDESIGNERAPIVERSION;
m_pPlugStructReplay->RegisterRootView("root.xml");
}
return m_pPlugStructReplay;
}
void cDisplayReplaySD::Show(void)
{
}
eOSState cDisplayReplaySD::ProcessKey(eKeys Key)
{
return eOSState::osContinue;
}
void cDisplayReplaySD::Flush()
{
}
void cDisplayReplaySD::SetCurrent(const char* Current)
{
}
void cDisplayReplaySD::SetMode(bool Play, bool Forward, int Speed)
{
}
|