summaryrefslogtreecommitdiff
path: root/mcli_service.h
diff options
context:
space:
mode:
authorLars Heer <l.heer@gmx.de>2013-09-18 05:50:03 +0200
committerLars Heer <l.heer@gmx.de>2013-09-18 05:50:03 +0200
commitccf6e0f9c6b0481ed13e0f4794e3fbead750f385 (patch)
treeed86efb54f7ee41edfba5c89ca519b5fd10aa0d5 /mcli_service.h
downloadvdr-plugin-mcli-ccf6e0f9c6b0481ed13e0f4794e3fbead750f385.tar.gz
vdr-plugin-mcli-ccf6e0f9c6b0481ed13e0f4794e3fbead750f385.tar.bz2
added vdr-plugin-mcli-0.0.1+svn20120927
Diffstat (limited to 'mcli_service.h')
-rw-r--r--mcli_service.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/mcli_service.h b/mcli_service.h
new file mode 100644
index 0000000..4daed2a
--- /dev/null
+++ b/mcli_service.h
@@ -0,0 +1,25 @@
+#ifndef MCLI_SERVICE_H
+#define MCLI_SERVICE_H
+
+#define MAX_TUNERS_IN_MENU 16
+
+typedef struct
+{
+ int type[MAX_TUNERS_IN_MENU];
+ char name[MAX_TUNERS_IN_MENU][128];
+ int preference[MAX_TUNERS_IN_MENU];
+} mclituner_info_t;
+
+
+/**
+ * struct used to get and set the number of tuner used by mcli
+ * negative value indicates : use all available tuners
+ */
+typedef struct
+{
+ int dvb_s;
+ int dvb_s2;
+ int dvb_t;
+ int dvb_c;
+} mcli_tuner_count_t;
+#endif