00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef INC_MI32_DLLDEFNS_H
00014 #define INC_MI32_DLLDEFNS_H
00015
00016 #if defined(NODLLLINKAGE)
00017
00018 #define MI_DLLIMPORT
00019 #define MI_DLLEXPORT
00020 #define MI_DLLCLASSIMPORT
00021 #define MI_DLLCLASSEXPORT
00022 #elif defined(WIN32)
00023
00024 #define MI_DLLIMPORT extern __declspec(dllimport)
00025 #define MI_DLLEXPORT __declspec(dllexport)
00026 #define MI_DLLCLASSIMPORT __declspec(dllimport)
00027 #define MI_DLLCLASSEXPORT __declspec(dllexport)
00028 #elif (defined(MAC_NATIVE) && defined(USEDLLS))
00029
00030 #define MI_DLLIMPORT extern __declspec(import)
00031 #define MI_DLLEXPORT __declspec(export)
00032 #define MI_DLLCLASSIMPORT
00033 #define MI_DLLCLASSEXPORT
00034
00035
00036
00037
00038
00039 #else
00040
00041 #define MI_DLLIMPORT
00042 #define MI_DLLEXPORT
00043 #define MI_DLLCLASSIMPORT
00044 #define MI_DLLCLASSEXPORT
00045 #endif
00046
00047 #endif