cms_CharSet_TranscodeApi.h
上传用户:amanda_214
上传日期:2014-04-26
资源大小:163k
文件大小:1k
开发平台:

C/C++

  1. #ifndef _CHARSET_TRANSCODEAPI_H
  2. #define _CHARSET_TRANSCODEAPI_H
  3. #define ISO_10646_UCS_2 0x03E8 /* ucs2  */
  4. #define GB2312 0x07E9 /* gb2312 */
  5. #define BIG5 0x07EA /* big4  */
  6. #define UTF8 0x6A /* UTF-8  */
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif /*end of __cplusplus*/
  10. /*========================================================
  11.  *      API defines
  12.  *========================================================*/
  13. unsigned char *fnCharSet_DecodeString2Local(int CharSet,unsigned char *Text,int *len);
  14. unsigned char *fnCharSet_EncodeLocalString2UTF8(unsigned char *Text,int *len);
  15. void fnCharSet_FreeStringBuf(void *pbuf);
  16. #ifdef __cplusplus
  17. }
  18. #endif  //end of #ifdef __cplusplus 
  19. #endif