From: alegrand Date: Wed, 16 Feb 2005 17:03:25 +0000 (+0000) Subject: C++ users need love. :) X-Git-Tag: v3.3~4326 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/eabf5fd1b436c08b408de268a45aac7182924f34?hp=12414616e3b50fc5fe20c423d4fddfc7bff15e20 C++ users need love. :) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1026 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/msg/datatypes.h b/include/msg/datatypes.h index 0dc9911455..b0c13e5d24 100644 --- a/include/msg/datatypes.h +++ b/include/msg/datatypes.h @@ -7,6 +7,9 @@ #ifndef MSG_DATATYPE_H #define MSG_DATATYPE_H +#include "xbt/misc.h" + +BEGIN_DECL() /** \defgroup m_datatypes_management MSG Data Types \brief This section describes the different datatypes provided by MSG. @@ -134,4 +137,6 @@ typedef enum { * it is generally not possible to interact directly with a link... */ typedef struct m_link *m_link_t; + +END_DECL() #endif diff --git a/include/msg/msg.h b/include/msg/msg.h index 63837ec477..7354664dac 100644 --- a/include/msg/msg.h +++ b/include/msg/msg.h @@ -8,6 +8,9 @@ #ifndef MSG_H #define MSG_H +#include "xbt/misc.h" + +BEGIN_DECL() #include "msg/datatypes.h" /************************** Global ******************************************/ @@ -113,5 +116,5 @@ MSG_error_t MSG_get_errno(void); /* m_link_t MSG_link_merge(const char *name, m_link_t src1, m_link_t src2); */ /* m_link_t MSG_get_link_by_name(const char *name); */ /* void MSG_tracelink(m_host_t dest, const char* **names, int *count); */ - +END_DECL() #endif