diff options
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.c 1.18 2002/09/08 11:46:53 kls Exp $ + * $Id: device.c 1.19 2002/09/08 14:03:43 kls Exp $ */ #include "device.h" @@ -113,6 +113,11 @@ cOsdBase *cDevice::NewOsd(int x, int y) return NULL; } +cSpuDecoder *cDevice::GetSpuDecoder(void) +{ + return NULL; +} + cDevice *cDevice::GetDevice(int Index) { return (0 <= Index && Index < numDevices) ? device[Index] : NULL; |