X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmCommon.h;h=233a3d116887ec3c1faf5ec3de1efd2858545436;hb=777e0b3c4cadd322da83f01a9b38d14065d41a8d;hp=ee2ef9ddd4691cc07496a88d57a71412596d038a;hpb=6ba98a3c21d34a1f26770c8281a920c2266fa0ec;p=gdcm.git diff --git a/src/gdcmCommon.h b/src/gdcmCommon.h index ee2ef9dd..233a3d11 100644 --- a/src/gdcmCommon.h +++ b/src/gdcmCommon.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmCommon.h,v $ Language: C++ - Date: $Date: 2005/01/09 00:13:26 $ - Version: $Revision: 1.46 $ + Date: $Date: 2005/01/15 20:24:02 $ + Version: $Revision: 1.50 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -45,7 +45,7 @@ #endif //_MSC_VER //----------------------------------------------------------------------------- -#ifdef GDCM_HAVE_STDINT_H +#ifdef CMAKE_HAVE_STDINT_H #include // For uint8_t uint16_t and uint32_t #else #if defined(_MSC_VER) || defined(__BORLANDC__) @@ -57,10 +57,14 @@ typedef unsigned int uint32_t; #define UINT32_MAX (4294967295U) #endif -#if defined(_MSC_VER) || defined(__BORLANDC__) -#define GDCM_EXPORT __declspec( dllexport ) +#if defined(_WIN32) && defined(BUILD_SHARED_LIBS) + #ifdef gdcm_EXPORTS + #define GDCM_EXPORT __declspec( dllexport ) + #else + #define GDCM_EXPORT __declspec( dllimport ) + #endif #else -#define GDCM_EXPORT + #define GDCM_EXPORT #endif #include @@ -78,11 +82,11 @@ namespace gdcm #define DICT_TS "dicomTS.dic" #define DICT_VR "dicomVR.dic" -extern const std::string GDCM_UNKNOWN; -extern const std::string GDCM_UNFOUND; -extern const std::string GDCM_BINLOADED; -extern const std::string GDCM_NOTLOADED; -extern const std::string GDCM_UNREAD; +GDCM_EXPORT extern const std::string GDCM_UNKNOWN; +GDCM_EXPORT extern const std::string GDCM_UNFOUND; +GDCM_EXPORT extern const std::string GDCM_BINLOADED; +GDCM_EXPORT extern const std::string GDCM_NOTLOADED; +GDCM_EXPORT extern const std::string GDCM_UNREAD; /// \brief TagKey is made to hold an "universal" (as in URL, Universal /// Ressource Locator) key to a DocEntry i.e. a dicom tag.