Blender  V2.93
AUD_Set.h
Go to the documentation of this file.
1 /*
2  * Copyright 2009-2011 Jörg Hermann Müller
3  *
4  * This file is part of AudaSpace.
5  *
6  * Audaspace is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * AudaSpace is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Audaspace; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19  */
20 
25 #ifndef __AUD_SET_H__
26 #define __AUD_SET_H__
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
36 extern void *AUD_createSet(void);
37 
42 extern void AUD_destroySet(void *set);
43 
50 extern char AUD_removeSet(void *set, void *entry);
51 
57 extern void AUD_addSet(void *set, void *entry);
58 
64 extern void *AUD_getSet(void *set);
65 
66 #ifdef __cplusplus
67 }
68 #endif
69 
70 #endif //__AUD_SET_H__
void * AUD_createSet(void)
Definition: AUD_Set.cpp:29
void * AUD_getSet(void *set)
Definition: AUD_Set.cpp:52
void AUD_addSet(void *set, void *entry)
Definition: AUD_Set.cpp:46
void AUD_destroySet(void *set)
Definition: AUD_Set.cpp:34
char AUD_removeSet(void *set, void *entry)
Definition: AUD_Set.cpp:39