Skip to content
Snippets Groups Projects
Commit 9e6e34df authored by Nathan Letwory's avatar Nathan Letwory
Browse files

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

Bring blenloader module under data group. Rename the group to look a bit more sensible in the output.
parent f77051c2
No related branches found
No related tags found
No related merge requests found
...@@ -622,7 +622,8 @@ INPUT = doxygen.main \ ...@@ -622,7 +622,8 @@ INPUT = doxygen.main \
../source/blender/windowmanager \ ../source/blender/windowmanager \
../source/blender/makesdna \ ../source/blender/makesdna \
../source/blender/makesrna \ ../source/blender/makesrna \
../intern/ghost ../intern/ghost \
../source/blender/blenloader
# This tag can be used to specify the character encoding of the source files # 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 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
......
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
* \todo add to doxygen * \todo add to doxygen
*/ */
/** \defgroup data DNA and RNA */ /** \defgroup data DNA, RNA and .blend access*/
/** \defgroup GHOST GHOST API */ /** \defgroup GHOST GHOST API */
...@@ -83,6 +83,10 @@ ...@@ -83,6 +83,10 @@
* \ingroup data * \ingroup data
*/ */
/** \defgroup readwrite .blend read and write functions
* \ingroup data
*/
/** \defgroup gui GUI */ /** \defgroup gui GUI */
/** \defgroup wm windowmanager /** \defgroup wm windowmanager
......
...@@ -25,11 +25,15 @@ ...@@ -25,11 +25,15 @@
* Contributor(s): none yet. * Contributor(s): none yet.
* *
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
* external readfile function prototypes
*/ */
#ifndef BLO_READFILE_H #ifndef BLO_READFILE_H
#define BLO_READFILE_H #define BLO_READFILE_H
/** \file BLO_readfile.h
* \ingroup readwrite
* \brief external readfile function prototypes.
*/
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
......
...@@ -29,6 +29,10 @@ ...@@ -29,6 +29,10 @@
#ifndef BLO_SOUNDFILE_H #ifndef BLO_SOUNDFILE_H
#define BLO_SOUNDFILE_H #define BLO_SOUNDFILE_H
/** \file BLO_soundfile.h
* \ingroup readwrite
*/
#include "DNA_sound_types.h" #include "DNA_sound_types.h"
#include "DNA_packedFile_types.h" #include "DNA_packedFile_types.h"
......
...@@ -25,6 +25,11 @@ ...@@ -25,6 +25,11 @@
* Contributor(s): none yet. * Contributor(s): none yet.
* *
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/
/** \file BLO_sys_types.h
* \ingroup readwrite
*
* A platform-independent definition of [u]intXX_t * A platform-independent definition of [u]intXX_t
* Plus the accompanying header include for htonl/ntohl * Plus the accompanying header include for htonl/ntohl
* *
......
...@@ -31,6 +31,10 @@ ...@@ -31,6 +31,10 @@
#ifndef BLO_UNDOFILE_H #ifndef BLO_UNDOFILE_H
#define BLO_UNDOFILE_H #define BLO_UNDOFILE_H
/** \file BLO_undofile.h
* \ingroup readwrite
*/
typedef struct { typedef struct {
void *next, *prev; void *next, *prev;
......
...@@ -25,12 +25,16 @@ ...@@ -25,12 +25,16 @@
* Contributor(s): none yet. * Contributor(s): none yet.
* *
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
* external writefile function prototypes
*/ */
#ifndef BLO_WRITEFILE_H #ifndef BLO_WRITEFILE_H
#define BLO_WRITEFILE_H #define BLO_WRITEFILE_H
/** \file BLO_writefile.h
* \ingroup readwrite
* \brief external writefile function prototypes.
*/
struct MemFile; struct MemFile;
struct Main; struct Main;
struct ReportList; struct ReportList;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment