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:
Diffstat (limited to 'source/blender/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 6c8ce968ac2..852842465c2 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -182,9 +182,11 @@ typedef struct bNodeTree {
bNodeSocket *selout;
/* callbacks */
- void (*timecursor)(int nr);
- void (*stats_draw)(char *str);
- int (*test_break)(void);
+ void (*timecursor)(void *, int nr);
+ void (*stats_draw)(void *, char *str);
+ int (*test_break)(void *);
+ void *tbh, *tch, *sdh;
+
} bNodeTree;
/* ntree->type, index */