diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-10-31 20:57:58 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-10-31 20:57:58 +0000 |
| commit | ffbf3042b679cad7903b0b617ba4e96d3b479cfd (patch) | |
| tree | 87c98af54ee5c3abe49ec866ff256df3a22a25b7 /lib/service/service.cpp | |
| parent | 3cb449e91190b3bb3527e5ef3fe487f0d4f4a440 (diff) | |
| download | enigma2-ffbf3042b679cad7903b0b617ba4e96d3b479cfd.tar.gz enigma2-ffbf3042b679cad7903b0b617ba4e96d3b479cfd.zip | |
add setInfo / setInfoString for iServiceInformation and iStaticServiceInformation
Diffstat (limited to 'lib/service/service.cpp')
| -rw-r--r-- | lib/service/service.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/service/service.cpp b/lib/service/service.cpp index aa1ee4d8..8ac7ebd4 100644 --- a/lib/service/service.cpp +++ b/lib/service/service.cpp @@ -208,4 +208,24 @@ PyObject* iServiceInformation::getInfoObject(int w) return Py_None; } +int iStaticServiceInformation::setInfo(const eServiceReference &ref, int w, int v) +{ + return -1; +} + +int iStaticServiceInformation::setInfoString(const eServiceReference &ref, int w, const char *v) +{ + return -1; +} + +int iServiceInformation::setInfo(int w, int v) +{ + return -1; +} + +int iServiceInformation::setInfoString(int w, const char *v) +{ + return -1; +} + eAutoInitPtr<eServiceCenter> init_eServiceCenter(eAutoInitNumbers::service, "eServiceCenter"); |
