-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDVBAPI.cpp
More file actions
107 lines (86 loc) · 1.93 KB
/
DVBAPI.cpp
File metadata and controls
107 lines (86 loc) · 1.93 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#include <getopt.h>
#include <vdr/plugin.h>
#include <linux/dvb/ca.h>
#include "DVBAPI.h"
#include "SCDVBDevice.h"
//#include "SCCAMSlot.h"
//#include "SCCIAdapter.h"
//static cPlugin *dVBAPI;
static const char *VERSION = "1.0";
DVBAPI::DVBAPI(void)
{
SCDVBDevice::OnPluginLoad();
}
DVBAPI::~DVBAPI()
{
SCDVBDevice::OnPluginUnload();
}
const char *DVBAPI::CommandLineHelp(void)
{
return "";
}
bool DVBAPI::ProcessArgs(int argc, char *argv[])
{
return true;
}
bool DVBAPI::Initialize(void)
{
// Initialize any background activities the plugin shall perform.
return SCDVBDevice::Initialize();
}
bool DVBAPI::Start(void)
{
SCDVBDevice::Startup();
isyslog("DVBAPI started");
return true;
}
void DVBAPI::Stop(void)
{
SCDVBDevice::Shutdown();
isyslog("DVBAPI stopped");
}
void DVBAPI::Housekeeping(void)
{
// Perform any cleanup or other regular tasks.
}
void DVBAPI::MainThreadHook(void)
{
// Perform actions in the context of the main program thread.
// WARNING: Use with great care - see PLUGINS.html!
}
cString DVBAPI::Active(void)
{
// Return a message string if shutdown should be postponed
return NULL;
}
time_t DVBAPI::WakeupTime(void)
{
// Return custom wakeup time for shutdown script
return 0;
}
cMenuSetupPage *DVBAPI::SetupMenu(void)
{
// Return a setup menu in case the plugin supports one.
return NULL;
}
bool DVBAPI::SetupParse(const char *Name, const char *Value)
{
// Parse your own setup parameters and store their values.
return false;
}
bool DVBAPI::Service(const char *Id, void *Data)
{
// Handle custom service requests from other plugins
return false;
}
const char **DVBAPI::SVDRPHelpPages(void)
{
// Return help text for SVDRP commands this plugin implements
return NULL;
}
cString DVBAPI::SVDRPCommand(const char *Command, const char *Option, int &ReplyCode)
{
// Process SVDRP commands this plugin implements
return NULL;
}
VDRPLUGINCREATOR(DVBAPI); // Don't touch this!