2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
* Copyright 2004 Blender Foundation. All rights reserved. */
|
2020-12-19 06:44:57 +01:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
|
* \ingroup sequencer
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
struct Scene;
|
|
|
|
|
struct Sequence;
|
|
|
|
|
|
|
|
|
|
struct Sequence *SEQ_select_active_get(struct Scene *scene);
|
|
|
|
|
int SEQ_select_active_get_pair(struct Scene *scene,
|
2021-02-05 22:34:03 +11:00
|
|
|
struct Sequence **r_seq_act,
|
|
|
|
|
struct Sequence **r_seq_other);
|
2020-12-19 06:44:57 +01:00
|
|
|
void SEQ_select_active_set(struct Scene *scene, struct Sequence *seq);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|