diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-10-11 13:23:44 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-10-11 13:23:44 +0200 |
commit | 6439d378067ceaf2b24ce3e19d3d0be3a261f615 (patch) | |
tree | 5ad08508a6bdba97778ee45fa89a2d7173a7acec /dvbdevice.h | |
parent | a3c772330a6e76a0e2442909d5baf4795b38a1d1 (diff) | |
download | vdr-6439d378067ceaf2b24ce3e19d3d0be3a261f615.tar.gz vdr-6439d378067ceaf2b24ce3e19d3d0be3a261f615.tar.bz2 |
Adapted type names to the new HEAD version of the driver
Diffstat (limited to 'dvbdevice.h')
-rw-r--r-- | dvbdevice.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dvbdevice.h b/dvbdevice.h index df7aa035..98456643 100644 --- a/dvbdevice.h +++ b/dvbdevice.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.h 1.12 2002/10/06 08:57:24 kls Exp $ + * $Id: dvbdevice.h 1.13 2002/10/11 12:24:19 kls Exp $ */ #ifndef __DVBDEVICE_H @@ -36,10 +36,11 @@ public: // Initializes the DVB devices. // Must be called before accessing any DVB functions. private: - FrontendType frontendType; #ifdef NEWSTRUCT + fe_type_t frontendType; int fd_osd, fd_frontend, fd_audio, fd_video, fd_dvr; #else + FrontendType frontendType; int fd_osd, fd_frontend, fd_sec, fd_audio, fd_video, fd_dvr; #endif int OsdDeviceHandle(void) const { return fd_osd; } |