iconv_impl.h 400 B

12345678910111213
  1. #ifndef __ICONV_IMPL__
  2. #define __ICONV_IMPL__
  3. extern std::string convert2(const char *from, const char* to, const char* inbuf, const size_t &inbufsize);
  4. extern std::string convert(const char *from, const char* to, const char* inbuf, const size_t &inbufsize);
  5. extern TString EnCode_UTF8URL(IN const TCHAR* pText);
  6. extern void EnCode_UTF8URL(IN const TCHAR* pText, OUT TString& strResult);
  7. #endif