1 /* 2 ******************************************************************************** 3 * USB UVC Driver 4 * 5 * (c) Copyright 2006-2010, All winners Co,Ld. 6 * All Right Reserved 7 * 8 * FileName : uvc_driver.h 9 * 10 * Author : Kingvan 11 * 12 * Date : 2013/03/26 13 * 14 * Description : USB VIDEO CONTROL Driver中对USB接口设备的处理 15 * 16 * Others : NULL 17 * 18 * History: 19 * <time> <author> <version > <desc> 20 * 2013.03.26 Kingvan 1.0 build this file 21 * 22 ******************************************************************************** 23 */ 24 #ifndef __USB_UVC_DRIVER_H__ 25 #define __USB_UVC_DRIVER_H__ 26 27 28 29 30 extern __s32 uvc_probe(UVCDev_t *UVCDev, const struct usb_drv_dev_match_table *id); 31 extern void uvc_disconnect(UVCDev_t *UVCDev); 32 33 34 35 36 37 38 39 40 41 42 43 44 #endif//__USB_UVC_DRIVER_H__ 45 46