00001
00002
00003
00004
00005
00006 #undef __IMPEXP__
00007
00008 #ifdef __BCPLUSPLUS__
00009 #ifdef __EXPORT_CAMMVA__
00010 #define __IMPEXP__ __declspec(dllexport)
00011 #endif
00012 #ifdef __USEDLL__
00013 #define __IMPEXP__ __declspec(dllimport)
00014 #endif
00015 #endif
00016
00017
00018 #ifdef _MSC_VER
00019 #ifdef __EXPORT_CAMMVA__
00020 #define __IMPEXP__ __declspec(dllexport)
00021 #endif
00022 #ifdef __USEDLL__
00023 #define __IMPEXP__ __declspec(dllimport)
00024 #endif
00025 #endif
00026
00027
00028 #ifdef __STATIC__
00029 #undef __IMPEXP__
00030 #define __IMPEXP__
00031 #endif
00032
00033 #ifndef __IMPEXP__
00034 #define __IMPEXP__
00035 #endif
00036