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>2016-03-03 05:35:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-03-03 05:35:21 +0300
commit1776ad53b9f7c27361b00bb606e927d0e75ba7e2 (patch)
tree4eb834db64af840f1ced39246a934f81953d1b1b /source/blender/blenloader/BLO_writefile.h
parentcfaba8ad6c2b63e2d1f5956cd3209171d1366d38 (diff)
Cleanup: take Main argument for copy
Diffstat (limited to 'source/blender/blenloader/BLO_writefile.h')
-rw-r--r--source/blender/blenloader/BLO_writefile.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/blenloader/BLO_writefile.h b/source/blender/blenloader/BLO_writefile.h
index 0d66eb743aa..af3bc2dbdcd 100644
--- a/source/blender/blenloader/BLO_writefile.h
+++ b/source/blender/blenloader/BLO_writefile.h
@@ -38,9 +38,11 @@ struct MemFile;
struct Main;
struct ReportList;
-extern int BLO_write_file(struct Main *mainvar, const char *filepath, int write_flags,
+extern bool BLO_write_file(
+ struct Main *mainvar, const char *filepath, int write_flags,
struct ReportList *reports, const struct BlendThumbnail *thumb);
-extern int BLO_write_file_mem(struct Main *mainvar, struct MemFile *compare, struct MemFile *current, int write_flags);
+extern bool BLO_write_file_mem(
+ struct Main *mainvar, struct MemFile *compare, struct MemFile *current, int write_flags);
#endif