2012-05-23 21:06:09 +08:00
|
|
|
/* dvb-usb-common.h is part of the DVB USB library.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004-5 Patrick Boettcher (patrick.boettcher@desy.de)
|
|
|
|
* see dvb-usb-init.c for copyright information.
|
|
|
|
*
|
2012-05-25 01:44:21 +08:00
|
|
|
* a header file containing prototypes and types for internal use of the
|
|
|
|
* dvb-usb-lib
|
2012-05-23 21:06:09 +08:00
|
|
|
*/
|
|
|
|
#ifndef DVB_USB_COMMON_H
|
|
|
|
#define DVB_USB_COMMON_H
|
|
|
|
|
|
|
|
#include "dvb_usb.h"
|
|
|
|
|
|
|
|
/* commonly used methods */
|
2012-08-02 01:44:06 +08:00
|
|
|
extern int usb_urb_initv2(struct usb_data_stream *stream,
|
2012-06-17 03:02:57 +08:00
|
|
|
const struct usb_data_stream_properties *props);
|
2012-08-02 01:44:06 +08:00
|
|
|
extern int usb_urb_exitv2(struct usb_data_stream *stream);
|
|
|
|
extern int usb_urb_submitv2(struct usb_data_stream *stream,
|
2012-05-29 04:25:40 +08:00
|
|
|
struct usb_data_stream_properties *props);
|
2012-08-02 01:44:06 +08:00
|
|
|
extern int usb_urb_killv2(struct usb_data_stream *stream);
|
2012-05-23 21:06:09 +08:00
|
|
|
|
|
|
|
#endif
|