00001
00016 #ifndef INC_MI32_DLLDEFNS_H
00017 #define INC_MI32_DLLDEFNS_H
00018
00019 #if defined(NODLLLINKAGE)
00021 #define MI_DLLIMPORT
00022 #define MI_DLLEXPORT
00023 #define MI_DLLCLASSIMPORT
00024 #define MI_DLLCLASSEXPORT
00025 #elif defined(WIN32)
00027 #define MI_DLLIMPORT extern __declspec(dllimport)
00028 #define MI_DLLEXPORT __declspec(dllexport)
00029 #define MI_DLLCLASSIMPORT __declspec(dllimport)
00030 #define MI_DLLCLASSEXPORT __declspec(dllexport)
00031 #else
00032
00033 #define MI_DLLIMPORT
00034 #define MI_DLLEXPORT
00035 #define MI_DLLCLASSIMPORT
00036 #define MI_DLLCLASSEXPORT
00037 #endif
00038
00039 #endif