mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 15:45:19 +00:00
(BTStack) Cleanup
This commit is contained in:
parent
3aa6c8e324
commit
38204f5c26
@ -35,14 +35,14 @@
|
|||||||
#if defined __cplusplus
|
#if defined __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef linked_item_t * linked_list_t;
|
|
||||||
|
|
||||||
typedef struct linked_item
|
typedef struct linked_item
|
||||||
{
|
{
|
||||||
struct linked_item *next; /* <-- next element in list, or NULL */
|
struct linked_item *next; /* <-- next element in list, or NULL */
|
||||||
void *user_data; /* <-- pointer to struct base */
|
void *user_data; /* <-- pointer to struct base */
|
||||||
} linked_item_t;
|
} linked_item_t;
|
||||||
|
|
||||||
|
typedef linked_item_t *linked_list_t;
|
||||||
|
|
||||||
void linked_item_set_user(linked_item_t *item, void *user_data); /* <-- set user data */
|
void linked_item_set_user(linked_item_t *item, void *user_data); /* <-- set user data */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user