|
Blender V4.3
|
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 31 of file AUD_Set.cpp.
| void * AUD_createSet | ( | void | ) |
| void AUD_destroySet | ( | void * | set | ) |
Deletes a set.
| set | The set to delete. |
Definition at line 18 of file AUD_Set.cpp.
References set().
| void * AUD_getSet | ( | void * | set | ) |
Removes one entry from a set and returns it.
| set | The set work on. |
Definition at line 38 of file AUD_Set.cpp.
| 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 23 of file AUD_Set.cpp.
References set().