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>2010-07-06 20:44:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-07-06 20:44:05 +0400
commit2a95a246eda72b3d08d0572562953a5703baa4b7 (patch)
tree788de89efeecb3cef2ca2af681310be4fa6a7224 /source/blender/blenkernel/BKE_sequencer.h
parent577cd54c8e88d97ecb87c7c0b01bf3fd6703e2ee (diff)
color balance can now be animated in the sequencer.
Diffstat (limited to 'source/blender/blenkernel/BKE_sequencer.h')
-rw-r--r--source/blender/blenkernel/BKE_sequencer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_sequencer.h b/source/blender/blenkernel/BKE_sequencer.h
index 6fe1c2a96ea..5c5bf30980c 100644
--- a/source/blender/blenkernel/BKE_sequencer.h
+++ b/source/blender/blenkernel/BKE_sequencer.h
@@ -136,8 +136,8 @@ struct SeqEffectHandle {
void printf_strip(struct Sequence *seq);
/* apply functions recursively */
-void seqbase_recursive_apply(struct ListBase *seqbase, int (*apply_func)(struct Sequence *seq, void *), void *arg);
-void seq_recursive_apply(struct Sequence *seq, int (*apply_func)(struct Sequence *, void *), void *arg);
+int seqbase_recursive_apply(struct ListBase *seqbase, int (*apply_func)(struct Sequence *seq, void *), void *arg);
+int seq_recursive_apply(struct Sequence *seq, int (*apply_func)(struct Sequence *, void *), void *arg);
// extern
void seq_free_sequence(struct Scene *scene, struct Sequence *seq);