Hid.h 739 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. ********************************************************************************
  3. * USB Hid Driver
  4. *
  5. * (c) Copyright 2006-2010, All winners Co,Ld.
  6. * All Right Reserved
  7. *
  8. * FileName : Hid.h
  9. *
  10. * Author : Javen
  11. *
  12. * Date : 2010/06/02
  13. *
  14. * Description : Hid Driver中对USB接口设备的描述
  15. *
  16. * Others : NULL
  17. *
  18. * History:
  19. * <time> <author> <version > <desc>
  20. * 2010.06.02 Javen 1.0 build this file
  21. *
  22. ********************************************************************************
  23. */
  24. #ifndef __HID_H__
  25. #define __HID_H__
  26. int HidInit(void);
  27. int HidExit(void);
  28. #endif //__HID_H__