SWIutilInternal.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 SWIUTIL_INTERNAL_H
  23. #define SWIUTIL_INTERNAL_H
  24. #ifndef NULL
  25. #ifdef  __cplusplus
  26. #define NULL    0
  27. #else
  28. #define NULL    ((void *)0)
  29. #endif
  30. #endif
  31. #ifdef WIN32
  32. #define wcsncasecmp(s1,s2,n) _wcsnicmp(s1,s2,n)
  33. #define wcscasecmp(s1,s2) _wcsicmp(s1,s2)
  34. #define strcasecmp(a,b) _stricmp(a,b)
  35. #endif
  36. #ifdef __cplusplus
  37. namespace std { };
  38. using namespace std;
  39. #ifdef _MSC_VER           /* Microsoft Visual C++ */
  40. /* Suppress/disable warnings triggered by STL headers */
  41. #pragma warning(4 : 4786) /* identifier was truncated to '255' 
  42.      characters in the debug information */
  43. #endif /* _MSC_VER */
  44. #if defined(__GNUC__) && (! defined(_GLIBCPP_USE_WCHAR_T))
  45. #include <string>
  46. namespace std
  47. {
  48.   typedef basic_string<wchar_t> wstring;
  49. }
  50. #endif
  51. #endif /* __cplusplus */
  52. #endif /* include guard */