00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00027 #ifndef OpenSOAP_Defines_H
00028 #define OpenSOAP_Defines_H
00029
00030
00031 #if defined(_MSC_VER) && !defined(OPENSOAP_STATIC)
00032 # if defined(OPENSOAP_BUILD_DLL)
00033 # define OPENSOAP_API __declspec(dllexport) __stdcall
00034 # define OPENSOAP_VAR __declspec(dllexport)
00035 # else
00036 # define OPENSOAP_API __declspec(dllimport) __stdcall
00037 # define OPENSOAP_VAR __declspec(dllimport)
00038 # endif
00039 #else
00040 # define OPENSOAP_VAR
00041 # if defined(_MSC_VER)
00042 # define OPENSOAP_API __stdcall
00043 # else
00044 # define OPENSOAP_API
00045 # endif
00046 #endif
00047
00048 #endif
00049