Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
define the XBT_IMPORT_NO_PUBLIC macro for imported but not exported type
[simgrid.git] / 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