Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef __LIBCDR_API_H__
00011 #define __LIBCDR_API_H__
00012
00013 #ifdef DLL_EXPORT
00014 #ifdef LIBCDR_BUILD
00015 #define CDRAPI __declspec(dllexport)
00016 #else
00017 #define CDRAPI __declspec(dllimport)
00018 #endif
00019 #else // !DLL_EXPORT
00020 #ifdef LIBCDR_VISIBILITY
00021 #define CDRAPI __attribute__((visibility("default")))
00022 #else
00023 #define CDRAPI
00024 #endif
00025 #endif
00026
00027 #endif
00028