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_lattice.h
parent779860d34e26bedfb24904bc6261db5cbe9afdbf (diff)
Cleanup: move variable declarations to headers
Quiet undeclared variable warning.
Diffstat (limited to 'source/blender/blenkernel/BKE_lattice.h')
-rw-r--r--source/blender/blenkernel/BKE_lattice.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_lattice.h b/source/blender/blenkernel/BKE_lattice.h
index 233b2724b46..d7597d61753 100644
--- a/source/blender/blenkernel/BKE_lattice.h
+++ b/source/blender/blenkernel/BKE_lattice.h
@@ -109,4 +109,7 @@ enum {
void BKE_lattice_batch_cache_dirty_tag(struct Lattice *lt, int mode);
void BKE_lattice_batch_cache_free(struct Lattice *lt);
+extern void (*BKE_lattice_batch_cache_dirty_tag_cb)(struct Lattice *lt, int mode);
+extern void (*BKE_lattice_batch_cache_free_cb)(struct Lattice *lt);
+
#endif /* __BKE_LATTICE_H__ */