Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
define the XBT_IMPORT_NO_PUBLIC macro for imported but not exported type
authorcherierm <cherierm@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Wed, 28 Feb 2007 19:21:37 +0000 (19:21 +0000)
committercherierm <cherierm@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Wed, 28 Feb 2007 19:21:37 +0000 (19:21 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3175 48e7efb5-ca39-0410-a469-dd3cf9ba447f

include/xbt/misc.h

index 1866117..256f4ec 100644 (file)
 
 
 #ifdef DLL_EXPORT
-#  define XBT_PUBLIC(type)                   __declspec(dllexport) type
+#  define XBT_PUBLIC(type)                       __declspec(dllexport) type
 #  define XBT_PUBLIC_NO_IMPORT(type)  __declspec(dllexport) type
+#  define XBT_IMPORT_NO_PUBLIC(type)  type 
 #else
 #  ifdef DLL_STATIC
-#    define XBT_PUBLIC(type)          type
+#    define XBT_PUBLIC(type)              type
 #    define XBT_PUBLIC_NO_IMPORT(type) type
+#   define XBT_IMPORT_NO_PUBLIC(type)  type 
 #  else
 #    ifdef _WIN32
-#      define XBT_PUBLIC(type)          __declspec(dllimport) type 
+#      define XBT_PUBLIC(type)              __declspec(dllimport) type
 #      define XBT_PUBLIC_NO_IMPORT(type) type
-#    else
-#      define XBT_PUBLIC(type)           extern type
+#      define XBT_IMPORT_NO_PUBLIC(type) __declspec(dllimport) type
+#       else
+#      define XBT_PUBLIC(type)              extern type
 #      define XBT_PUBLIC_NO_IMPORT(type) type
+#      define XBT_IMPORT_NO_PUBLIC(type) type
 #    endif
 #  endif
-#endif 
+#endif