From: navarro Date: Fri, 23 Mar 2012 11:36:25 +0000 (+0100) Subject: Link for m_file_t works on doxygen now X-Git-Tag: v3_7~245 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/b3acfcf8c08cc69fa50ed9b9da9cb01634d6319c?hp=1b8282670ce916ad31b361062082096ea32dbc14;ds=sidebyside Link for m_file_t works on doxygen now --- diff --git a/include/msg/datatypes.h b/include/msg/datatypes.h index 099e21fe25..8e3e1ff97d 100644 --- a/include/msg/datatypes.h +++ b/include/msg/datatypes.h @@ -48,10 +48,12 @@ typedef struct m_file { char *name; /**< @brief file name */ void *data; /**< @brief user data */ } s_m_file_t; - +/** @brief File datatype + @ingroup m_datatypes_management_details */ typedef struct m_file *m_file_t; + /* ******************************** Task ************************************ */ typedef struct simdata_task *simdata_task_t; diff --git a/src/msg/msg_io.c b/src/msg/msg_io.c index 3d93df607f..eed97d2e19 100644 --- a/src/msg/msg_io.c +++ b/src/msg/msg_io.c @@ -10,7 +10,7 @@ * \htmlonly \endhtmlonly * (#m_file_t) and the functions for managing it. * - * \see m_file_t + * \see #m_file_t */ /********************************* File **************************************/ @@ -60,7 +60,7 @@ size_t MSG_file_write(const char* storage, const void* ptr, size_t size, size_t * a+ Open for reading and appending (writing at end of file). The file is created if it does not exist. The initial file position for reading * is at the beginning of the file, but output is always appended to the end of the file. * - * \return A m_file_t associated to the file + * \return An #m_file_t associated to the file */ m_file_t MSG_file_open(const char* storage, const char* path, const char* mode) {