Blender V4.3
AUD_Set.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2009-2011 Jörg Hermann Müller
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9#ifndef __AUD_SET_H__
10#define __AUD_SET_H__
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
20extern void *AUD_createSet(void);
21
26extern void AUD_destroySet(void *set);
27
34extern char AUD_removeSet(void *set, void *entry);
35
41extern void AUD_addSet(void *set, void *entry);
42
48extern void *AUD_getSet(void *set);
49
50#ifdef __cplusplus
51}
52#endif
53
54#endif //__AUD_SET_H__
void * AUD_getSet(void *set)
Definition AUD_Set.cpp:38
void AUD_addSet(void *set, void *entry)
Definition AUD_Set.cpp:31
void AUD_destroySet(void *set)
Definition AUD_Set.cpp:18
void * AUD_createSet(void)
Definition AUD_Set.cpp:13
char AUD_removeSet(void *set, void *entry)
Definition AUD_Set.cpp:23