mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 16:39:43 +00:00
41 lines
818 B
C
41 lines
818 B
C
#ifndef __MYLIST_H__
|
|
#define __MYLIST_H__
|
|
|
|
#include <stddef.h>
|
|
#include <boolean.h>
|
|
#include <retro_common_api.h>
|
|
#include <dynamic/dylib.h>
|
|
|
|
RETRO_BEGIN_DECLS
|
|
|
|
typedef void *(*constructor_t)(void);
|
|
typedef void (*destructor_t )(void*);
|
|
|
|
typedef struct MyList_t
|
|
{
|
|
void **data;
|
|
int capacity;
|
|
int size;
|
|
constructor_t constructor;
|
|
destructor_t destructor;
|
|
} MyList;
|
|
|
|
void *mylist_add_element(MyList *list);
|
|
|
|
void mylist_resize(MyList *list, int newSize, bool run_constructor);
|
|
|
|
void mylist_create(MyList **list_p, int initial_capacity,
|
|
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);
|
|
|
|
RETRO_END_DECLS
|
|
|
|
#endif
|