diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-11-07 14:16:25 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-11-07 14:16:25 +0100 |
commit | 85767a54058ac2de21a51fe58c33fbd1c5bb4628 (patch) | |
tree | 4cd157a7f1bf004447bb4a5ea479eaa86603c81e /device.c | |
parent | 2a7467aed5a0b96e64bc5e7493c96d89583d3a6d (diff) | |
download | vdr-85767a54058ac2de21a51fe58c33fbd1c5bb4628.tar.gz vdr-85767a54058ac2de21a51fe58c33fbd1c5bb4628.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.48 2003/10/18 12:19:39 kls Exp $ + * $Id: device.c 1.49 2003/11/07 14:15:10 kls Exp $ */ #include "device.h" @@ -500,6 +500,11 @@ bool cDevice::SetPlayMode(ePlayMode PlayMode) return false; } +int64_t cDevice::GetSTC(void) +{ + return -1; +} + void cDevice::TrickSpeed(int Speed) { } |