00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef CTA_SYSTEM_H
00026 #define CTA_SYSTEM_H
00027
00028 #ifdef WIN32
00029
00030 #ifdef CTALIB
00031 #define CTAEXPORT __declspec(dllexport)
00032 #else
00033 #define CTAEXPORT __declspec(dllimport)
00034 #endif
00035
00036 #ifdef FTN_CAPITAL
00037 #define F77_FUNC(X,Y) Y
00038 #define F77_FUNC_NOEXP(X,Y) Y
00039 #else
00040 #define F77_FUNC(X,Y) X
00041 #define F77_FUNC_NOEXP(X,Y) X
00042 #endif
00043
00044 #ifdef FTN_CAPITAL
00045 #define F77_CALL(X,Y) __cdecl Y
00046 #define CF77_CALL(X,Y) Y
00047 #else
00048 #define F77_CALL(X,Y) __cdecl X
00049 #define CF77_CALL(X,Y) X
00050 #endif
00051
00052
00053 #else
00054
00055 #define CTAEXPORT
00056 #define F77_CALL(X,Y) F77_FUNC(X,Y)
00057 #define CF77_CALL(X,Y) F77_FUNC(X,Y)
00058
00059 #endif
00060
00061 #endif
00062