From b3acfcf8c08cc69fa50ed9b9da9cb01634d6319c Mon Sep 17 00:00:00 2001 From: navarro Date: Fri, 23 Mar 2012 12:36:25 +0100 Subject: [PATCH 1/1] Link for m_file_t works on doxygen now --- include/msg/datatypes.h | 4 +++- src/msg/msg_io.c | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) 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) { -- 2.20.1