00001
00002
00003
00004
00005
00006
00007 #ifndef DVBTYPES_H
00008 #define DVBTYPES_H
00009
00010
00011 #include <sys/poll.h>
00012 #include <sys/ioctl.h>
00013 #include <sys/param.h>
00014 #include <stdint.h>
00015 #include <unistd.h>
00016
00017
00018 #include <linux/dvb/version.h>
00019 #include <linux/dvb/frontend.h>
00020 #include <linux/dvb/dmx.h>
00021
00022 #ifndef DVB_API_VERSION_MINOR
00023 #define DVB_API_VERSION_MINOR 0
00024 #endif
00025
00026 #if !(DVB_API_VERSION == 3 && DVB_API_VERSION_MINOR >= 1) && DVB_API_VERSION != 5
00027 # error "DVB driver includes with API version 3.1 or later not found!"
00028 #endif
00029
00030
00031 #include <QString>
00032
00033 QString toString(fe_status);
00034
00035 #endif // DVB_TYPES_H