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/readblenfile/BLO_readblenfile.h
parentea81c58429ecd51752e2abb7d756ef1d09514b84 (diff)
2.5: Change blenloader module to use the Report system for reporting errors.
Diffstat (limited to 'source/blender/readblenfile/BLO_readblenfile.h')
-rw-r--r--source/blender/readblenfile/BLO_readblenfile.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/source/blender/readblenfile/BLO_readblenfile.h b/source/blender/readblenfile/BLO_readblenfile.h
index 01de3c77f01..8d85956054f 100644
--- a/source/blender/readblenfile/BLO_readblenfile.h
+++ b/source/blender/readblenfile/BLO_readblenfile.h
@@ -35,21 +35,23 @@
extern "C" {
#endif
+struct ReportList;
+
BlendFileData *
BLO_readblenfilename(
char *fileName,
- BlendReadError *error_r);
+ struct ReportList *reports);
BlendFileData *
BLO_readblenfilehandle(
int fileHandle,
- BlendReadError *error_r);
+ struct ReportList *reports);
BlendFileData *
BLO_readblenfilememory(
char *fromBuffer,
int fromBufferSize,
- BlendReadError *error_r);
+ struct ReportList *reports);
void
@@ -68,7 +70,7 @@ blo_is_a_runtime(
BlendFileData *
blo_read_runtime(
char *file,
- BlendReadError *error_r);
+ struct ReportList *reports);
#define BLO_RESERVEDSIZE 12
extern char *headerMagic;