Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Do not export a single symbol since if we do so, we have to export all of them manually
[simgrid.git] / include / xbt / misc.h
index 9b232f3..bdd9e92 100644 (file)
 # define _XBT_INLINE 
 #endif
 
-/* The cruft needed to export data in DLLs */
-#ifdef _WIN32
-# ifdef DLL_EXPORT 
-#  define XBT_EXPORT __declspec(dllexport) /* building the DLL */
-# else
-#  define XBT_EXPORT extern __declspec(dllimport) /* using the DLL */
-# endif
-#else
-# define XBT_EXPORT
-#endif
-
-
 
 #ifndef max
 #  define max(a, b) (((a) > (b))?(a):(b))