Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_speaker.h
| Show All 27 Lines | |||||
| * \brief General operations for speakers. | * \brief General operations for speakers. | ||||
| */ | */ | ||||
| struct Main; | struct Main; | ||||
| struct Speaker; | struct Speaker; | ||||
| void BKE_speaker_init(struct Speaker *spk); | void BKE_speaker_init(struct Speaker *spk); | ||||
| void *BKE_speaker_add(struct Main *bmain, const char *name); | void *BKE_speaker_add(struct Main *bmain, const char *name); | ||||
| void BKE_speaker_copy_data(struct Main *bmain, struct Speaker *spk_dst, const struct Speaker *spk_src, const int flag); | |||||
| struct Speaker *BKE_speaker_copy(struct Main *bmain, const struct Speaker *spk); | struct Speaker *BKE_speaker_copy(struct Main *bmain, const struct Speaker *spk); | ||||
| void BKE_speaker_make_local(struct Main *bmain, struct Speaker *spk, const bool lib_local); | void BKE_speaker_make_local(struct Main *bmain, struct Speaker *spk, const bool lib_local); | ||||
| void BKE_speaker_free(struct Speaker *spk); | void BKE_speaker_free(struct Speaker *spk); | ||||
| #endif | #endif | ||||