iconv_impl.h 534 B

1234567891011121314
  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. extern string DeCode_URLGB2312(IN const CHAR* pURLText);
  8. extern void DeCode_URLGB2312(IN const CHAR* pURLText, OUT string& strResult);
  9. #endif