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:
authorCampbell Barton <ideasman42@gmail.com>2020-06-23 09:38:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-06-23 09:38:52 +0300
commit4040cb438f8929da6a1c29ba7c9c8288c1f05a5a (patch)
treef9ecf5b2e3f991be027b7a8439c76155302a4abf /source/blender/blenloader/BLO_writefile.h
parented68fee665fae983e3031260e01deff5053065a8 (diff)
Cleanup: use doxy sections for BLI read/write headers
Add reference between the read/write functions too.
Diffstat (limited to 'source/blender/blenloader/BLO_writefile.h')
-rw-r--r--source/blender/blenloader/BLO_writefile.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/blenloader/BLO_writefile.h b/source/blender/blenloader/BLO_writefile.h
index 32cb6633c12..f9eada96308 100644
--- a/source/blender/blenloader/BLO_writefile.h
+++ b/source/blender/blenloader/BLO_writefile.h
@@ -30,6 +30,12 @@ struct Main;
struct MemFile;
struct ReportList;
+/* -------------------------------------------------------------------- */
+/** \name BLO Write File API
+ *
+ * \see #BLO_read_from_file for file reading.
+ * \{ */
+
/**
* Adjust paths when saving (kept unless #G_FILE_SAVE_COPY is set).
*/
@@ -66,4 +72,6 @@ extern bool BLO_write_file_mem(struct Main *mainvar,
struct MemFile *current,
int write_flags);
+/** \} */
+
#endif