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-23 04:58:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-23 04:59:13 +0300
commit085e9e3bedf68f3c6b25c57c103367d02b25e5a9 (patch)
tree115822b9048f512a65445b0177b575ed58f87d34 /source/blender/blenkernel/BKE_mball.h
parent779860d34e26bedfb24904bc6261db5cbe9afdbf (diff)
Cleanup: move variable declarations to headers
Quiet undeclared variable warning.
Diffstat (limited to 'source/blender/blenkernel/BKE_mball.h')
-rw-r--r--source/blender/blenkernel/BKE_mball.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_mball.h b/source/blender/blenkernel/BKE_mball.h
index 0b0ee6fd498..fc065279aa3 100644
--- a/source/blender/blenkernel/BKE_mball.h
+++ b/source/blender/blenkernel/BKE_mball.h
@@ -83,4 +83,8 @@ enum {
void BKE_mball_batch_cache_dirty_tag(struct MetaBall *mb, int mode);
void BKE_mball_batch_cache_free(struct MetaBall *mb);
+extern void (*BKE_mball_batch_cache_dirty_tag_cb)(struct MetaBall *mb, int mode);
+extern void (*BKE_mball_batch_cache_free_cb)(struct MetaBall *mb);
+
+
#endif