Files
test/source/blender/blenkernel/BKE_speaker.h
Jesse Yurkovich 5c65ad4b1b Cleanup: use non-void return types for BKE_*_add functions
Many of the functions were already using proper types. This changes the
others still using `void *` to return their proper types directly.

Pull Request: https://projects.blender.org/blender/blender/pulls/128980
2024-10-17 21:05:18 +02:00

24 lines
358 B
C

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
#pragma once
/** \file
* \ingroup bke
* \brief General operations for speakers.
*/
#ifdef __cplusplus
extern "C" {
#endif
struct Main;
struct Speaker;
struct Speaker *BKE_speaker_add(struct Main *bmain, const char *name);
#ifdef __cplusplus
}
#endif