MythTV  master
dvbtypes.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) Kenneth Aafloy 2003
3  *
4  * Copyright notice is in dvbrecorder.cpp of the MythTV project.
5  */
6 
7 #ifndef DVBTYPES_H
8 #define DVBTYPES_H
9 
10 // POSIX headers
11 #include <cstdint>
12 #include <sys/poll.h>
13 #include <sys/ioctl.h>
14 #include <sys/param.h>
15 #include <unistd.h>
16 
17 // DVB headers
18 #include <linux/dvb/version.h>
19 #include <linux/dvb/frontend.h>
20 #include <linux/dvb/dmx.h>
21 
22 #ifndef DVB_API_VERSION_MINOR
23 #define DVB_API_VERSION_MINOR 0
24 #endif
25 
26 #if !(DVB_API_VERSION == 3 && DVB_API_VERSION_MINOR >= 1) && DVB_API_VERSION != 5
27 # error "DVB driver includes with API version 3.1 or later not found!"
28 #endif
29 
30 // Qt headers
31 #include <QString>
32 
33 QString toString(fe_status status);
34 
35 #endif // DVB_TYPES_H
toString
QString toString(fe_status status)
Definition: dvbtypes.cpp:6