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:
authorCampbell Barton <ideasman42@gmail.com>2019-02-27 07:39:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-27 07:39:12 +0300
commitcdda910fc321ab03d21434b5015dae41b8e7720b (patch)
tree72e258d0635dfa7358a850036ce738693d0ad922 /source/blender/makesdna
parent79171b15e4389702ec1d15af869a0a658a18a2b9 (diff)
Cleanup: remove runtime structs from DNA
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_space_types.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h
index 405b2b92d8c..b9c50660d0b 100644
--- a/source/blender/makesdna/DNA_space_types.h
+++ b/source/blender/makesdna/DNA_space_types.h
@@ -828,12 +828,16 @@ typedef enum eDirEntry_SelectFlag {
#define ASSET_UUID_LENGTH 16
/* Used to communicate with asset engines outside of 'import' context. */
+#
+#
typedef struct AssetUUID {
int uuid_asset[4];
int uuid_variant[4];
int uuid_revision[4];
} AssetUUID;
+#
+#
typedef struct AssetUUIDList {
AssetUUID *uuids;
int nbr_uuids;
@@ -841,6 +845,8 @@ typedef struct AssetUUIDList {
} AssetUUIDList;
/* Container for a revision, only relevant in asset context. */
+#
+#
typedef struct FileDirEntryRevision {
struct FileDirEntryRevision *next, *prev;
@@ -859,6 +865,8 @@ typedef struct FileDirEntryRevision {
/* Container for a variant, only relevant in asset context.
* In case there are no variants, a single one shall exist, with NULL name/description. */
+#
+#
typedef struct FileDirEntryVariant {
struct FileDirEntryVariant *next, *prev;
@@ -872,6 +880,8 @@ typedef struct FileDirEntryVariant {
} FileDirEntryVariant;
/* Container for mere direntry, with additional asset-related data. */
+#
+#
typedef struct FileDirEntry {
struct FileDirEntry *next, *prev;
@@ -913,6 +923,8 @@ typedef struct FileDirEntry {
* In AssetEngine context (i.e. outside of 'browsing' context), entries contain all needed data, there is no filtering,
* so nbr_entries_filtered, entry_idx_start and entry_idx_end should all be set to -1.
*/
+#
+#
typedef struct FileDirEntryArr {
ListBase entries;
int nbr_entries;