diff options
Diffstat (limited to 'mcli_service.h')
-rw-r--r-- | mcli_service.h | 25 |
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 |