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

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 _SWI_PRINTF_H__
  23. #define _SWI_PRINTF_H__
  24. #include <stdio.h>
  25. #include <stdarg.h>
  26. #include <SWIchar.h>
  27. /* This is required for OSB reference source distributions of this
  28.  * file, where we have to get these functions exported without a def
  29.  * file. */
  30. #ifdef SWIPRINTF_DLL_EXPORT
  31. #ifdef __cplusplus
  32. #define SWIPRINTF_API extern "C" __declspec(dllexport)
  33. #else
  34. #define SWIPRINTF_API __declspec(dllexport)
  35. #endif
  36. #else
  37. #ifdef __cplusplus
  38. #define SWIPRINTF_API extern "C"
  39. #else
  40. #define SWIPRINTF_API extern
  41. #endif
  42. #endif
  43. /**
  44.  * addtogroup Character
  45.  */
  46. /*@{*/
  47. ///
  48. SWIPRINTF_API
  49. int SWIfprintf (FILE* file, const char* format, ...);
  50. ///
  51. SWIPRINTF_API
  52. int SWIfwprintf (FILE* file, const wchar_t* format, ...);
  53. ///
  54. SWIPRINTF_API
  55. int SWIsprintf (char* str, size_t maxlen, const char* format, ...);
  56. ///
  57. SWIPRINTF_API
  58. int SWIswprintf (wchar_t* wcs, size_t maxlen, const wchar_t* format, ...);
  59. ///
  60. SWIPRINTF_API
  61. int SWIvsprintf (char* str, size_t maxlen, const char* format, va_list args);
  62. ///
  63. SWIPRINTF_API
  64. int SWIvswprintf (wchar_t* wcs, size_t maxlen, const wchar_t* format,
  65.   va_list args);
  66. ///
  67. SWIPRINTF_API
  68. wchar_t* SWIfgetws (wchar_t* ws, int n, FILE* stream);
  69. #ifdef _linux_
  70. SWIPRINTF_API
  71. int SWIswscanf(const wchar_t* buffer, const wchar_t* format, ... );
  72. #elif defined(_win32_)
  73. #define SWIswscanf swscanf
  74. #elif defined(_solaris_)
  75. #define SWIswscanf swscanf
  76. #else
  77. /* Assume we have swscanf() and see what happens */
  78. #define SWIswscanf swscanf
  79. #endif
  80. /*@}*/
  81. #endif  /* _SWI_PRINTF_H__ */