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:
authorLukas Tönne <lukas.toenne@gmail.com>2015-06-02 14:05:11 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-06-02 14:05:11 +0300
commit33d6e6ed42f3a092355211bc92e84d91d1fcc413 (patch)
treee2b14086b7bdb873dc11a99c068ff40c29d56680 /source/blender/makesdna
parentf9ec2e706e652d5af5af15883c13122816ba29ad (diff)
Display basic metadata of a cache archive in the cache library input
settings.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_cache_library_types.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_cache_library_types.h b/source/blender/makesdna/DNA_cache_library_types.h
index 88ddaff4802..5a003680b64 100644
--- a/source/blender/makesdna/DNA_cache_library_types.h
+++ b/source/blender/makesdna/DNA_cache_library_types.h
@@ -137,6 +137,11 @@ typedef enum eCacheArchiveInfoNode_Type {
typedef struct CacheArchiveInfo {
char filepath[1024]; /* FILE_MAX */
+
+ char app_name[64]; /* MAX_NAME */
+ char date_written[64]; /* MAX_NAME */
+ char description[256];
+
struct CacheArchiveInfoNode *root_node;
} CacheArchiveInfo;