Bring blenloader module under data group. Rename the group to look a bit more sensible in the output.

This commit is contained in:
Nathan Letwory 2011-02-17 23:34:07 +00:00
parent f77051c2fc
commit 9e6e34df6c
7 changed files with 30 additions and 4 deletions

@ -622,7 +622,8 @@ INPUT = doxygen.main \
../source/blender/windowmanager \
../source/blender/makesdna \
../source/blender/makesrna \
../intern/ghost
../intern/ghost \
../source/blender/blenloader
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is

@ -72,7 +72,7 @@
* \todo add to doxygen
*/
/** \defgroup data DNA and RNA */
/** \defgroup data DNA, RNA and .blend access*/
/** \defgroup GHOST GHOST API */
@ -83,6 +83,10 @@
* \ingroup data
*/
/** \defgroup readwrite .blend read and write functions
* \ingroup data
*/
/** \defgroup gui GUI */
/** \defgroup wm windowmanager

@ -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

@ -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"

@ -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
*

@ -31,6 +31,10 @@
#ifndef BLO_UNDOFILE_H
#define BLO_UNDOFILE_H
/** \file BLO_undofile.h
* \ingroup readwrite
*/
typedef struct {
void *next, *prev;

@ -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;