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:
authorJeroen Bakker <jeroen@blender.org>2021-10-13 16:42:48 +0300
committerJeroen Bakker <jeroen@blender.org>2021-10-13 16:44:36 +0300
commite659f78d3e5892f98c4855907a9cf91af12638e8 (patch)
tree5577413efbed19a6b71c0fa3a21bf2b72df67731 /source/blender/blenloader/BLO_readfile.h
parent24cc552cf48694b5ed07d885c0cc69220cbbe34b (diff)
Cleanup: use typedef struct for BLODataBlockInfo.
Diffstat (limited to 'source/blender/blenloader/BLO_readfile.h')
-rw-r--r--source/blender/blenloader/BLO_readfile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenloader/BLO_readfile.h b/source/blender/blenloader/BLO_readfile.h
index fa29b09af02..4656bc64a1f 100644
--- a/source/blender/blenloader/BLO_readfile.h
+++ b/source/blender/blenloader/BLO_readfile.h
@@ -163,10 +163,10 @@ void BLO_blendfiledata_free(BlendFileData *bfd);
/** \name BLO Blend File Handle API
* \{ */
-struct BLODataBlockInfo {
+typedef struct BLODataBlockInfo {
char name[64]; /* MAX_NAME */
struct AssetMetaData *asset_data;
-};
+} BLODataBlockInfo;
BlendHandle *BLO_blendhandle_from_file(const char *filepath, struct BlendFileReadReport *reports);
BlendHandle *BLO_blendhandle_from_memory(const void *mem,