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>2007-03-07 17:58:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-03-07 17:58:29 +0300
commit9e2081a5fc078bf8bb040f0befe62156b9592436 (patch)
treebeb3f6e50c696e1d464659afd50adf802110bd11 /source/blender/include
parentc5a15828013f39b476742f3ef1389aba68a3cbd5 (diff)
made alloc_sequence accept a linkedList so it can be used from Python.
the start/end points for new strips were not set properly.
Diffstat (limited to 'source/blender/include')
-rw-r--r--source/blender/include/BIF_editseq.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/include/BIF_editseq.h b/source/blender/include/BIF_editseq.h
index 3d03def7159..3999b4311d4 100644
--- a/source/blender/include/BIF_editseq.h
+++ b/source/blender/include/BIF_editseq.h
@@ -62,6 +62,7 @@ void transform_seq(int mode, int context);
void un_meta(void);
void seq_cut(int cutframe);
void reassign_inputs_seq_effect(void);
+struct Sequence* alloc_sequence(ListBase *lb, int cfra, int machine); /*used from python*/
/* drawseq.c */
void do_seqbuttons(short);