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 <brecht@blender.org>2021-06-22 20:11:06 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-06-22 20:13:50 +0300
commit3a48147b8ab92e4828157ec7a3a1a75dd1a6b964 (patch)
treeb1b3875b83eda3b5213fd2318ba8751819c0b337 /source/blender/blenkernel/BKE_blendfile.h
parent0b15353baa5c7c5b57ccb5dff8ef0fdf0d8beb5d (diff)
Revert "Enhanced stats/reports for blendfile reading."
This change crashes library linking operators, related tests and probably more. This reverts commit f8d219dfd4c31a918e33cb715472d91a5cd3fd51. Ref D11583
Diffstat (limited to 'source/blender/blenkernel/BKE_blendfile.h')
-rw-r--r--source/blender/blenkernel/BKE_blendfile.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/source/blender/blenkernel/BKE_blendfile.h b/source/blender/blenkernel/BKE_blendfile.h
index 3e0a343a766..429e294a337 100644
--- a/source/blender/blenkernel/BKE_blendfile.h
+++ b/source/blender/blenkernel/BKE_blendfile.h
@@ -25,7 +25,6 @@ extern "C" {
struct BlendFileData;
struct BlendFileReadParams;
-struct BlendFileReadReport;
struct ID;
struct Main;
struct MemFile;
@@ -36,7 +35,7 @@ struct bContext;
void BKE_blendfile_read_setup_ex(struct bContext *C,
struct BlendFileData *bfd,
const struct BlendFileReadParams *params,
- struct BlendFileReadReport *reports,
+ struct ReportList *reports,
/* Extra args. */
const bool startup_update_defaults,
const char *startup_app_template);
@@ -44,11 +43,11 @@ void BKE_blendfile_read_setup_ex(struct bContext *C,
void BKE_blendfile_read_setup(struct bContext *C,
struct BlendFileData *bfd,
const struct BlendFileReadParams *params,
- struct BlendFileReadReport *reports);
+ struct ReportList *reports);
struct BlendFileData *BKE_blendfile_read(const char *filepath,
const struct BlendFileReadParams *params,
- struct BlendFileReadReport *reports);
+ struct ReportList *reports);
struct BlendFileData *BKE_blendfile_read_from_memory(const void *filebuf,
int filelength,