mirror of
https://github.com/kbeckmann/game-and-watch-retro-go.git
synced 2025-12-17 19:16:02 +01:00
14 lines
326 B
C
14 lines
326 B
C
#include "rg_emulators.h"
|
|
|
|
typedef struct {
|
|
char name[64];
|
|
char path[168];
|
|
int removed;
|
|
retro_emulator_file_t file;
|
|
} favorite_t;
|
|
|
|
void favorites_init();
|
|
bool favorite_add(retro_emulator_file_t *file);
|
|
bool favorite_remove(retro_emulator_file_t *file);
|
|
favorite_t *favorite_find(retro_emulator_file_t *file);
|