00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __CELTOOL_CELTOOLEXTERN_H__
00021 #define __CELTOOL_CELTOOLEXTERN_H__
00022
00023 #include "cssysdef.h"
00024 #include "celplatform.h"
00025
00026 #if defined(CS_PLATFORM_WIN32)
00027 #if defined(CEL_BUILD_SHARED_LIBS)
00028 #define CEL_EXPORT_SYM CS_EXPORT_SYM_DLL
00029 #define CEL_IMPORT_SYM CS_IMPORT_SYM_DLL
00030 #else
00031 #define CEL_EXPORT_SYM
00032 #define CEL_IMPORT_SYM
00033 #endif // CEL_BUILD_SHARED_LIBS
00034 #else
00035 #if defined(CEL_BUILD_SHARED_LIBS)
00036 #define CEL_EXPORT_SYM CS_VISIBILITY_DEFAULT
00037 #else
00038 #define CEL_EXPORT_SYM
00039 #endif
00040 #define CEL_IMPORT_SYM
00041 #endif
00042
00043 #ifdef CEL_CELTOOL_LIB
00044 #define CEL_CELTOOL_EXPORT CEL_EXPORT_SYM
00045 #else
00046 #define CEL_CELTOOL_EXPORT CEL_IMPORT_SYM
00047 #endif
00048
00049 #endif // __CELTOOL_CELTOOLEXTERN_H__