blob: 4daed2abc66b2de2ca2f88903af057276e7dee18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
|