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-07-07 17:06:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-07-07 17:17:40 +0300
commit1357dd7d3cf2d0cb5c574fa518136a4654869493 (patch)
tree90da62d31f81cafc549e5ab224e1536c569297e7 /source/blender/makesdna/DNA_packedFile_types.h
parent084d545202c27fda5117817491c8d5761b4daafc (diff)
Cleanup: move enum unto BKE_packedFile.h
Use enum type for functions arguments. Removed -1 check in switch statement, this isn't needed.
Diffstat (limited to 'source/blender/makesdna/DNA_packedFile_types.h')
-rw-r--r--source/blender/makesdna/DNA_packedFile_types.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/source/blender/makesdna/DNA_packedFile_types.h b/source/blender/makesdna/DNA_packedFile_types.h
index a8afa667158..8196e3098eb 100644
--- a/source/blender/makesdna/DNA_packedFile_types.h
+++ b/source/blender/makesdna/DNA_packedFile_types.h
@@ -30,20 +30,4 @@ typedef struct PackedFile {
void *data;
} PackedFile;
-enum ePF_FileStatus {
- PF_EQUAL = 0,
- PF_DIFFERS = 1,
- PF_NOFILE = 2,
-
- PF_WRITE_ORIGINAL = 3,
- PF_WRITE_LOCAL = 4,
- PF_USE_LOCAL = 5,
- PF_USE_ORIGINAL = 6,
- PF_KEEP = 7,
- PF_REMOVE = 8,
- PF_NOOP = 9,
-
- PF_ASK = 10,
-};
-
#endif /* PACKEDFILE_TYPES_H */