From: mquinson Date: Fri, 22 Sep 2006 15:16:10 +0000 (+0000) Subject: Do not export a single symbol since if we do so, we have to export all of them manually X-Git-Tag: v3.3~2560 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/1e59458bb5bc6dea868c6c5b40ee007547cf21b5 Do not export a single symbol since if we do so, we have to export all of them manually git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2799 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/xbt/misc.h b/include/xbt/misc.h index 9b232f3ee6..bdd9e92f9d 100644 --- a/include/xbt/misc.h +++ b/include/xbt/misc.h @@ -45,18 +45,6 @@ # 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))