| 1234567891011121314151617181920212223242526272829303132 |
- /*
- ********************************************************************************
- * USB UVC Driver
- *
- * (c) Copyright 2006-2010, All winners Co,Ld.
- * All Right Reserved
- *
- * FileName : UVC.c
- *
- * Author : Kingvan
- *
- * Date : 2013/03/26
- *
- * Description : USB VIDEO CONTROL Driver中对USB接口设备的处理
- *
- * Others : NULL
- *
- * History:
- * <time> <author> <version > <desc>
- * 2013.03.26 Kingvan 1.0 build this file
- *
- ********************************************************************************
- */
- #ifndef __UVC_H__
- #define __UVC_H__
- #include "typedef.h"
- __s32 UVCInit(void);
- __s32 UVCExit(void);
- #endif //__UVC_H__
|