| 12345678910111213141516171819202122232425262728293031 |
- /*
- ********************************************************************************
- * USB Hid Driver
- *
- * (c) Copyright 2006-2010, All winners Co,Ld.
- * All Right Reserved
- *
- * FileName : Hid.h
- *
- * Author : Javen
- *
- * Date : 2010/06/02
- *
- * Description : Hid Driver中对USB接口设备的描述
- *
- * Others : NULL
- *
- * History:
- * <time> <author> <version > <desc>
- * 2010.06.02 Javen 1.0 build this file
- *
- ********************************************************************************
- */
- #ifndef __HID_H__
- #define __HID_H__
- int HidInit(void);
- int HidExit(void);
- #endif //__HID_H__
|