summaryrefslogtreecommitdiff
path: root/device.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-08-25 09:36:09 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-08-25 09:36:09 +0200
commitc6ed4da7a0e8d9bf5664ba2c4282e3c6cb6d7932 (patch)
treeaef8dad67f4e01f6655e0e189af7af1576e038af /device.c
parentdf5be87dc3aa8a94990dcc387729c551fb14a3db (diff)
downloadvdr-c6ed4da7a0e8d9bf5664ba2c4282e3c6cb6d7932.tar.gz
vdr-c6ed4da7a0e8d9bf5664ba2c4282e3c6cb6d7932.tar.bz2
Added cDevice::NewOsd() to allow a derived cDevice class to implement its own OSD capabilities
Diffstat (limited to 'device.c')
-rw-r--r--device.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/device.c b/device.c
index 6a310377..48f5d40f 100644
--- a/device.c
+++ b/device.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: device.c 1.12 2002/08/16 09:50:43 kls Exp $
+ * $Id: device.c 1.13 2002/08/25 09:16:51 kls Exp $
*/
#include "device.h"
@@ -111,6 +111,11 @@ bool cDevice::HasDecoder(void) const
return false;
}
+cOsdBase *cDevice::NewOsd(int x, int y)
+{
+ return NULL;
+}
+
cDevice *cDevice::GetDevice(int Ca, int Priority, int Frequency, int Vpid, bool *ReUse)
{
if (ReUse)