Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
C++ users need love. :)
authoralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Wed, 16 Feb 2005 17:03:25 +0000 (17:03 +0000)
committeralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Wed, 16 Feb 2005 17:03:25 +0000 (17:03 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1026 48e7efb5-ca39-0410-a469-dd3cf9ba447f

include/msg/datatypes.h
include/msg/msg.h

index 0dc9911..b0c13e5 100644 (file)
@@ -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
index 63837ec..7354664 100644 (file)
@@ -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