forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
26 lines
424 B
C
26 lines
424 B
C
#ifndef __LINUX_DVB_COMPAT_H
|
|
#define __LINUX_DVB_COMPAT_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
struct l_dtv_property {
|
|
uint32_t cmd;
|
|
uint32_t reserved[3];
|
|
union {
|
|
uint32_t data;
|
|
struct {
|
|
uint8_t data[32];
|
|
uint32_t len;
|
|
uint32_t reserved1[3];
|
|
l_uintptr_t reserved2;
|
|
} buffer;
|
|
} u;
|
|
l_int result;
|
|
} __attribute__ ((packed));
|
|
|
|
struct l_dtv_properties {
|
|
uint32_t num;
|
|
l_uintptr_t props;
|
|
};
|
|
|
|
#endif /*__LINUX_DVB_H*/
|