Go to the source code of this file.
◆ AUD_addSet()
| void AUD_addSet |
( |
void * | set, |
|
|
void * | entry ) |
|
extern |
Adds a new entry to a set.
- Parameters
-
| set | The set work on. |
| entry | The entry to add. |
Definition at line 31 of file AUD_Set.cpp.
References insert(), and set().
◆ AUD_createSet()
| void * AUD_createSet |
( |
void | | ) |
|
|
extern |
Creates a new set.
- Returns
- The new set.
Definition at line 13 of file AUD_Set.cpp.
◆ AUD_destroySet()
| void AUD_destroySet |
( |
void * | set | ) |
|
|
extern |
◆ AUD_getSet()
| void * AUD_getSet |
( |
void * | set | ) |
|
|
extern |
Removes one entry from a set and returns it.
- Parameters
-
- Returns
- The entry or NULL if the set is empty.
Definition at line 38 of file AUD_Set.cpp.
References result, and set().
◆ AUD_removeSet()
| char AUD_removeSet |
( |
void * | set, |
|
|
void * | entry ) |
|
extern |
Removes an entry from a set.
- Parameters
-
| set | The set work on. |
| entry | The entry to remove. |
- Returns
- Whether the entry was in the set or not.
Definition at line 23 of file AUD_Set.cpp.
References set().