summaryrefslogtreecommitdiff
path: root/dvbdevice.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-08-10 14:58:25 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-08-10 14:58:25 +0200
commitfd1f60e0e0a346f5db69c03a68be6166a961e5b1 (patch)
tree4c0811c4624cb24f1cef57418066ecd5ad30b0ed /dvbdevice.h
parent506c772bd726e9399389807184a210a399bfec4d (diff)
downloadvdr-fd1f60e0e0a346f5db69c03a68be6166a961e5b1.tar.gz
vdr-fd1f60e0e0a346f5db69c03a68be6166a961e5b1.tar.bz2
Adapted VDR to the NEWSTRUCT driver
Diffstat (limited to 'dvbdevice.h')
-rw-r--r--dvbdevice.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/dvbdevice.h b/dvbdevice.h
index 25777f06..3cf3304d 100644
--- a/dvbdevice.h
+++ b/dvbdevice.h
@@ -4,18 +4,22 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbdevice.h 1.1 2002/08/04 12:19:10 kls Exp $
+ * $Id: dvbdevice.h 1.2 2002/08/09 16:23:53 kls Exp $
*/
#ifndef __DVBDEVICE_H
#define __DVBDEVICE_H
+#ifdef NEWSTRUCT
+#include <linux/dvb/frontend.h>
+#else
#include <stdlib.h> // FIXME: this is apparently necessary for the ost/... header files
// FIXME: shouldn't every header file include ALL the other header
// FIXME: files it depends on? The sequence in which header files
// FIXME: are included here should not matter - and it should NOT
// FIXME: be necessary to include <stdlib.h> here!
#include <ost/frontend.h>
+#endif
#include "device.h"
#include "eit.h"
@@ -30,7 +34,11 @@ public:
// Must be called before accessing any DVB functions.
private:
FrontendType frontendType;
+#ifdef NEWSTRUCT
+ int fd_osd, fd_frontend, fd_audio, fd_video, fd_dvr;
+#else
int fd_osd, fd_frontend, fd_sec, fd_audio, fd_video, fd_dvr;
+#endif
int OsdDeviceHandle(void) const { return fd_osd; }
protected:
virtual void MakePrimaryDevice(bool On);