SWIutilHeaderPrefix.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. /* (1) Platform specific macro which handles symbol exports & imports */
  23. #ifndef SWIUTIL_HEADER_PREFIX_H
  24. #define SWIUTIL_HEADER_PREFIX_H
  25. #ifdef _WIN32
  26. #ifdef __cplusplus
  27. #define SWIUTIL_EXPORT_DECL extern "C" __declspec(dllexport)
  28. #define SWIUTIL_IMPORT_DECL extern "C" __declspec(dllimport)
  29. #define SWIUTIL_EXPORT_CPP_DECL extern __declspec(dllexport)
  30. #define SWIUTIL_IMPORT_CPP_DECL extern __declspec(dllimport)
  31. #define SWIUTIL_EXPORT_CPP_CLASS_DECL __declspec(dllexport)
  32. #define SWIUTIL_IMPORT_CPP_CLASS_DECL __declspec(dllimport)
  33. #else
  34. #define SWIUTIL_EXPORT_DECL __declspec(dllexport)
  35. #define SWIUTIL_IMPORT_DECL __declspec(dllimport)
  36. #endif
  37. #else
  38. #ifdef __cplusplus
  39. #define SWIUTIL_EXPORT_DECL extern "C"
  40. #define SWIUTIL_IMPORT_DECL extern "C"
  41. #define SWIUTIL_EXPORT_CPP_DECL extern
  42. #define SWIUTIL_IMPORT_CPP_DECL extern
  43. #define SWIUTIL_EXPORT_CPP_CLASS_DECL
  44. #define SWIUTIL_IMPORT_CPP_CLASS_DECL
  45. #else
  46. #define SWIUTIL_EXPORT_DECL extern
  47. #define SWIUTIL_IMPORT_DECL extern
  48. #endif
  49. #endif
  50. #if !defined(SWIUTIL_EXPORT_DECL) || !defined(SWIUTIL_IMPORT_DECL)
  51. #error Symbol import/export pair not defined.
  52. #endif
  53. #ifdef SWIUTIL_NO_DLL
  54. #define SWIUTIL_API_CLASS
  55. #define SWIUTIL_API_CPP
  56. #define SWIUTIL_API
  57. #else  /* ! SWIUTIL_NO_DLL */
  58. #ifdef SWIUTIL_EXPORTS
  59. #ifdef __cplusplus
  60. #define SWIUTIL_API_CLASS SWIUTIL_EXPORT_CPP_CLASS_DECL
  61. #define SWIUTIL_API_CPP SWIUTIL_EXPORT_CPP_DECL
  62. #endif
  63. #define SWIUTIL_API SWIUTIL_EXPORT_DECL
  64. #else  /* ! SWIUTIL_EXPORTS */
  65. #ifdef __cplusplus
  66. #define SWIUTIL_API_CLASS SWIUTIL_IMPORT_CPP_CLASS_DECL
  67. #define SWIUTIL_API_CPP SWIUTIL_IMPORT_CPP_DECL
  68. #endif
  69. #define SWIUTIL_API SWIUTIL_IMPORT_DECL
  70. #endif /* SWIUTIL_EXPORTS */
  71. #endif /* SWIUTIL_NO_DLL */
  72. #endif /* include guard */