Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Link for m_file_t works on doxygen now
authornavarro <navarro@caraja.(none)>
Fri, 23 Mar 2012 11:36:25 +0000 (12:36 +0100)
committernavarro <navarro@caraja.(none)>
Fri, 23 Mar 2012 11:36:25 +0000 (12:36 +0100)
include/msg/datatypes.h
src/msg/msg_io.c

index 099e21f..8e3e1ff 100644 (file)
@@ -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;
index 3d93df6..eed97d2 100644 (file)
@@ -10,7 +10,7 @@
  *     \htmlonly <!-- DOXYGEN_NAVBAR_LABEL="File" --> \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)
 {