|
Blender
V2.93
|
Go to the source code of this file.
Functions | |
| void * | AUD_createSet () |
| void | AUD_destroySet (void *set) |
| char | AUD_removeSet (void *set, void *entry) |
| void | AUD_addSet (void *set, void *entry) |
| void * | AUD_getSet (void *set) |
| void AUD_addSet | ( | void * | set, |
| void * | entry | ||
| ) |
Adds a new entry to a set.
| set | The set work on. |
| entry | The entry to add. |
Definition at line 46 of file AUD_Set.cpp.
References insert().
| void* AUD_createSet | ( | void | ) |
| void AUD_destroySet | ( | void * | set | ) |
| void* AUD_getSet | ( | void * | set | ) |
Removes one entry from a set and returns it.
| set | The set work on. |
Definition at line 52 of file AUD_Set.cpp.
References result.
| char AUD_removeSet | ( | void * | set, |
| void * | entry | ||
| ) |
Removes an entry from a set.
| set | The set work on. |
| entry | The entry to remove. |
Definition at line 39 of file AUD_Set.cpp.