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:
authorTon Roosendaal <ton@blender.org>2007-12-24 21:53:37 +0300
committerTon Roosendaal <ton@blender.org>2007-12-24 21:53:37 +0300
commit463cf8e3328bf8a00117567a59343a90ec17ee3d (patch)
tree90a8725de1d8dd5e15d48247d9001d67beb345fd /source/blender/makesdna/DNA_ID.h
parentc79966be52e251cc7b1028ea4d3012b44eb6a8af (diff)
Part 4 of the event refactor branch: all changes in existing files,
Makefiles especially, and of course the windowmanager DNA!
Diffstat (limited to 'source/blender/makesdna/DNA_ID.h')
-rw-r--r--source/blender/makesdna/DNA_ID.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index 57aec75700f..3b078e2bd68 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -77,11 +77,11 @@ typedef struct IDProperty {
#define IDP_FLOAT 2
#define IDP_ARRAY 5
#define IDP_GROUP 6
-/*the ID link property type hasn't been implemented yet, this will require
- some cleanup of blenkernel, most likely.*/
+/* the ID link property type hasn't been implemented yet, this will require
+ some cleanup of blenkernel, most likely.*/
#define IDP_ID 7
-/*add any future new id property types here.*/
+/* add any future new id property types here.*/
/* watch it: Sequence has identical beginning. */
/**
@@ -89,6 +89,8 @@ typedef struct IDProperty {
* provides a common handle to place all data in double-linked lists.
* */
+#define MAX_ID_NAME 24
+
/* There's a nasty circular dependency here.... void* to the rescue! I
* really wonder why this is needed. */
typedef struct ID {
@@ -184,6 +186,7 @@ typedef struct PreviewImage {
#define ID_NT MAKE_ID2('N', 'T')
#define ID_BR MAKE_ID2('B', 'R')
#define ID_PA MAKE_ID2('P', 'A')
+#define ID_WM MAKE_ID2('W', 'M')
/* NOTE! Fake IDs, needed for g.sipo->blocktype or outliner */
#define ID_SEQ MAKE_ID2('S', 'Q')