Cleanup: use typedef struct for BLODataBlockInfo.

This commit is contained in:
Jeroen Bakker 2021-10-13 15:42:48 +02:00
parent 24cc552cf4
commit e659f78d3e
1 changed files with 2 additions and 2 deletions

View File

@ -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,