00001 #ifndef DLLEXPORT_H 00002 #define DLLEXPORT_H 00003 00004 #ifdef __cplusplus 00005 #ifdef _WIN32 00006 #define DLLEXPORT extern "C" __declspec(dllexport) 00007 #else 00008 #define DLLEXPORT extern "C" 00009 #endif 00010 #else 00011 #define DLLEXPORT 00012 #endif 00013 00014 DLLEXPORT short getCompileInfo(){ 00015 #ifdef _AFXDLL 00016 return 1; 00017 #else 00018 return 0; 00019 #endif 00020 } 00021 00022 #endif
1.3-rc2