diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-11-07 15:30:51 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-11-07 15:30:51 +0100 |
commit | 30d9af07a8379df62cdd33c0bafe1c65dd5bdc58 (patch) | |
tree | 51becc825a1d796cd747e97bd0682ea9a96ce40a /device.c | |
parent | 327b4c35ac60dcbe00cc8fa08cd5c129c685de83 (diff) | |
download | vdr-30d9af07a8379df62cdd33c0bafe1c65dd5bdc58.tar.gz vdr-30d9af07a8379df62cdd33c0bafe1c65dd5bdc58.tar.bz2 |
Added cDevice::GetSTC()
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.47 2003/08/15 12:34:36 kls Exp $ + * $Id: device.c 1.47.1.1 2003/11/07 13:16:12 kls Exp $ */ #include "device.h" @@ -498,6 +498,11 @@ bool cDevice::SetPlayMode(ePlayMode PlayMode) return false; } +int64_t cDevice::GetSTC(void) +{ + return -1; +} + void cDevice::TrickSpeed(int Speed) { } |