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
24 lines
358 B
C
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
|