|
RetroArch
|
Functions | |
| void | mylist_resize (MyList *list, int newSize, bool runConstructor) |
| void * | mylist_add_element (MyList *list) |
| void | mylist_create (MyList **list_p, int initialCapacity, constructor_t constructor, destructor_t destructor) |
| void | mylist_destroy (MyList **list_p) |
| void | mylist_assign (MyList *list, int index, void *value) |
| void | mylist_remove_at (MyList *list, int index) |
| void | mylist_pop_front (MyList *list) |
| void | mylist_push_back (MyList *list, void *value) |
| void mylist_create | ( | MyList ** | list_p, |
| int | initialCapacity, | ||
| constructor_t | constructor, | ||
| destructor_t | destructor | ||
| ) |
1.8.15