Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2011-02-18 02:34:07 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2011-02-18 02:34:07 +0300
commit9e6e34df6cc5aa9b514d32b42c0732b91f293008 (patch)
treedd5567c18a077329982f1d41ba57ed233c408b5c /source/blender/blenloader
parentf77051c2fcd49e327d44c1edf92ebe9a4258c6c0 (diff)
Bring blenloader module under data group. Rename the group to look a bit more sensible in the output.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/BLO_readfile.h6
-rw-r--r--source/blender/blenloader/BLO_soundfile.h4
-rw-r--r--source/blender/blenloader/BLO_sys_types.h5
-rw-r--r--source/blender/blenloader/BLO_undofile.h4
-rw-r--r--source/blender/blenloader/BLO_writefile.h6
5 files changed, 23 insertions, 2 deletions
diff --git a/source/blender/blenloader/BLO_readfile.h b/source/blender/blenloader/BLO_readfile.h
index 94983791289..024bff98c0f 100644
--- a/source/blender/blenloader/BLO_readfile.h
+++ b/source/blender/blenloader/BLO_readfile.h
@@ -25,11 +25,15 @@
* Contributor(s): none yet.
*
* ***** END GPL LICENSE BLOCK *****
- * external readfile function prototypes
*/
#ifndef BLO_READFILE_H
#define BLO_READFILE_H
+/** \file BLO_readfile.h
+ * \ingroup readwrite
+ * \brief external readfile function prototypes.
+ */
+
#ifdef __cplusplus
extern "C" {
#endif
diff --git a/source/blender/blenloader/BLO_soundfile.h b/source/blender/blenloader/BLO_soundfile.h
index aa37a053e18..60b05535cad 100644
--- a/source/blender/blenloader/BLO_soundfile.h
+++ b/source/blender/blenloader/BLO_soundfile.h
@@ -29,6 +29,10 @@
#ifndef BLO_SOUNDFILE_H
#define BLO_SOUNDFILE_H
+/** \file BLO_soundfile.h
+ * \ingroup readwrite
+ */
+
#include "DNA_sound_types.h"
#include "DNA_packedFile_types.h"
diff --git a/source/blender/blenloader/BLO_sys_types.h b/source/blender/blenloader/BLO_sys_types.h
index e29beb48efb..956ed513852 100644
--- a/source/blender/blenloader/BLO_sys_types.h
+++ b/source/blender/blenloader/BLO_sys_types.h
@@ -25,6 +25,11 @@
* Contributor(s): none yet.
*
* ***** END GPL LICENSE BLOCK *****
+ */
+
+/** \file BLO_sys_types.h
+ * \ingroup readwrite
+ *
* A platform-independent definition of [u]intXX_t
* Plus the accompanying header include for htonl/ntohl
*
diff --git a/source/blender/blenloader/BLO_undofile.h b/source/blender/blenloader/BLO_undofile.h
index 9ec03c4e4d4..c7f0f7f0d1f 100644
--- a/source/blender/blenloader/BLO_undofile.h
+++ b/source/blender/blenloader/BLO_undofile.h
@@ -31,6 +31,10 @@
#ifndef BLO_UNDOFILE_H
#define BLO_UNDOFILE_H
+/** \file BLO_undofile.h
+ * \ingroup readwrite
+ */
+
typedef struct {
void *next, *prev;
diff --git a/source/blender/blenloader/BLO_writefile.h b/source/blender/blenloader/BLO_writefile.h
index 127607232e1..7fdc136980e 100644
--- a/source/blender/blenloader/BLO_writefile.h
+++ b/source/blender/blenloader/BLO_writefile.h
@@ -25,12 +25,16 @@
* Contributor(s): none yet.
*
* ***** END GPL LICENSE BLOCK *****
- * external writefile function prototypes
*/
#ifndef BLO_WRITEFILE_H
#define BLO_WRITEFILE_H
+/** \file BLO_writefile.h
+ * \ingroup readwrite
+ * \brief external writefile function prototypes.
+ */
+
struct MemFile;
struct Main;
struct ReportList;