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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-12-19 03:50:21 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-12-19 03:50:21 +0300
commitd9de6fca6cda2a7ddeeb936692b529182a14dec9 (patch)
tree63b5384fe03297bdfb40205c280b36ec043d0ed1 /source/blender/blenloader/BLO_writefile.h
parentea81c58429ecd51752e2abb7d756ef1d09514b84 (diff)
2.5: Change blenloader module to use the Report system for reporting errors.
Diffstat (limited to 'source/blender/blenloader/BLO_writefile.h')
-rw-r--r--source/blender/blenloader/BLO_writefile.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/blenloader/BLO_writefile.h b/source/blender/blenloader/BLO_writefile.h
index 0b88cb1fb77..8205a43f39f 100644
--- a/source/blender/blenloader/BLO_writefile.h
+++ b/source/blender/blenloader/BLO_writefile.h
@@ -33,11 +33,12 @@
struct MemFile;
struct bContext;
+struct ReportList;
-extern int BLO_write_file(struct bContext *C, char *dir, int write_flags, char **error_r);
+extern int BLO_write_file(struct bContext *C, char *dir, int write_flags, struct ReportList *reports);
extern int BLO_write_file_mem(struct bContext *C, struct MemFile *compare, struct MemFile *current,
- int write_flags, char **error_r);
-extern void BLO_write_runtime(struct bContext *C, char *file, char *exename);
+ int write_flags, struct ReportList *reports);
+extern int BLO_write_runtime(struct bContext *C, char *file, char *exename, struct ReportList *reports);
#endif