1
0
mirror of https://github.com/DigitalDevices/dddvb.git synced 2023-10-10 13:37:43 +02:00

only define ca_pid_t for user space

This commit is contained in:
Ralph Metzler 2018-01-16 23:52:17 +01:00
parent a6b6e3be29
commit 94dfd16461

View File

@ -134,7 +134,7 @@ struct ca_descr {
typedef struct ca_pid { typedef struct ca_pid {
unsigned int pid; unsigned int pid;
int index;/* -1 == disable*/ int index;/* -1 == disable*/
} ca_pid_t; };
#define CA_RESET _IO('o', 128) #define CA_RESET _IO('o', 128)
#define CA_GET_CAP _IOR('o', 129, struct ca_caps) #define CA_GET_CAP _IOR('o', 129, struct ca_caps)
@ -153,6 +153,7 @@ typedef struct ca_descr_info ca_descr_info_t;
typedef struct ca_caps ca_caps_t; typedef struct ca_caps ca_caps_t;
typedef struct ca_msg ca_msg_t; typedef struct ca_msg ca_msg_t;
typedef struct ca_descr ca_descr_t; typedef struct ca_descr ca_descr_t;
typedef struct ca_pid ca_pid_t;
#endif #endif