blob: ff71e9a5e32e2b12e914a52d0d2cd9687c32fd3f (
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
|
#include "displayReplaySD.h"
cDisplayReplaySD::cDisplayReplaySD(plexclient::cVideo *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) {
}
|