assessibility.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. ********************************************************************************
  3. * USB UVC Driver
  4. *
  5. * (c) Copyright 2010-2015, All winners Co,Ld.
  6. * All Right Reserved
  7. *
  8. * FileName : assessibility.h
  9. *
  10. * Author : Kingvan.Tong
  11. *
  12. * Date : 2013.03.26
  13. *
  14. * Description : USB Webcam
  15. *
  16. * Others : NULL
  17. *
  18. * History:
  19. * <time> <version > <author> <desc>
  20. * 2013.03.26 1.0 Kingvan.Tong build this file
  21. *
  22. ********************************************************************************
  23. */
  24. #ifndef __USB_UVC_ASSESSIBILITY_H__
  25. #define __USB_UVC_ASSESSIBILITY_H__
  26. #include "usb_os_platform.h"
  27. extern unsigned int uvc_strlcpy(char *dest, const char *src, unsigned int size);
  28. extern unsigned int uvc_strlcat(char *dest, const char *src, unsigned int count);
  29. extern unsigned short get_unaligned_le16( const void *p );
  30. extern unsigned int get_unaligned_le32( const void *p );
  31. #endif