-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdisplayReplaySD.cpp
More file actions
36 lines (26 loc) · 977 Bytes
/
displayReplaySD.cpp
File metadata and controls
36 lines (26 loc) · 977 Bytes
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) {
}