charsetdet.h 852 B

12345678910111213141516171819202122232425262728293031323334
  1. /*! \addtogroup UNICODE
  2. * @{
  3. */
  4. /*!
  5. *
  6. * @file charsetdet.h
  7. *
  8. * @brief This file specifies the character detection APIs
  9. *
  10. * @note Copyright (c) 2009 Sunplus Technology Co., Ltd. \n
  11. * All rights reserved.
  12. *
  13. * @author
  14. *
  15. ******************************************************************************/
  16. #ifndef __CHARSETDET_H__
  17. #define __CHARSETDET_H__
  18. /******************************************************************************/
  19. /*!
  20. * @brief Guess a codepage by a raw character stream
  21. *
  22. * @param rawchr raw character stream
  23. * @param size of raw character stream
  24. *
  25. * @return guessed code page number
  26. *******************************************************************************/
  27. UINT32 CS_GuessCodePage(const UINT8 *rawchr, UINT32 size);
  28. /*! @} end of defgroup Unicode */
  29. #endif // __CHARSETDET_H__
  30. /*! @} end of addtogroup UNICODE */