SWIutfconversions.h
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:2k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. /****************License************************************************
  2.  * Vocalocity OpenVXI
  3.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  18.  * registered trademarks of Vocalocity, Inc. 
  19.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  20.  * by Vocalocity.
  21.  ***********************************************************************/
  22. #ifndef _SWIUTFCONVERSIONS_H_
  23. #define _SWIUTFCONVERSIONS_H_
  24. #include <stdio.h>
  25. #include <SWIchar.h>
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. /**
  30.  * addtogroup Character
  31.  */
  32. /*@{*/
  33. /**
  34.  * Wide to UTF-8 conversion.
  35.  * @param src The source wide string
  36.  * @param dst The destination buffer the will hold the UTF-8 result.
  37.  * @param maxdstlen The maximum number of character that dst should contain.
  38.  * @return -1 for buffer overflow, otherwise the length of the dst string.
  39.  */
  40. SWIcharResult SWIwcstoutf8(const wchar_t *src, unsigned char *dst, int maxdstlen);
  41. /**
  42.  * UTF-8 to wide conversion.
  43.  * @param src The source UTF-8 string
  44.  * @param dst The destination buffer the will hold the wide result.
  45.  * @param maxdstlen The maximum number of character that dst should contain.
  46.  * @return -1 for buffer overflow, otherwise the length of the dst string.
  47.  */
  48. SWIcharResult SWIutf8towcs( const unsigned char *src, wchar_t *dst, int maxdstlen );
  49. /**
  50.  * Returns the length of a UTF-8 string after conversion from wide.
  51.  */
  52. int SWIwcstoutf8len(const wchar_t* src);
  53. /**
  54.  * Returns the length of a wide string after conversion from UTF-8.
  55.  */
  56. int SWIutf8towcslen(const unsigned char* src);
  57. /*@}*/
  58. #ifdef __cplusplus
  59. }
  60. #endif
  61. #endif