12#define FAVORITES_COUNT 8
13#define HISTORY_COUNT 8
bookkeeping_item_types_t bookkeeping_type
Definition bookkeeping.h:26
path_t * primary_path
Definition bookkeeping.h:24
void bookkeeping_load(bookkeeping_t *history)
Load ROM bookkeeping.
Definition bookkeeping.c:58
void bookkeeping_favorite_remove(bookkeeping_t *bookkeeping, int selection)
Remove a ROM from the favorites.
Definition bookkeeping.c:283
#define FAVORITES_COUNT
Definition bookkeeping.h:12
#define HISTORY_COUNT
Definition bookkeeping.h:13
path_t * secondary_path
Definition bookkeeping.h:25
void bookkeeping_history_add(bookkeeping_t *bookkeeping, path_t *primary_path, path_t *secondary_path, bookkeeping_item_types_t type)
Add a ROM to the history.
Definition bookkeeping.c:247
void bookkeeping_save(bookkeeping_t *history)
Save ROM bookkeeping.
Definition bookkeeping.c:99
void bookkeeping_favorite_add(bookkeeping_t *bookkeeping, path_t *primary_path, path_t *secondary_path, bookkeeping_item_types_t type)
Add a ROM to the favorites.
Definition bookkeeping.c:266
void bookkeeping_init(char *path)
Initialize ROM bookkeeping path.
Definition bookkeeping.c:23
bookkeeping_item_types_t
Bookkeeping item types enumeration.
Definition bookkeeping.h:16
@ BOOKKEEPING_TYPE_ROM
Definition bookkeeping.h:18
@ BOOKKEEPING_TYPE_DISK
Definition bookkeeping.h:19
@ BOOKKEEPING_TYPE_EMPTY
Definition bookkeeping.h:17
Bookkeeping item structure.
Definition bookkeeping.h:23
ROM bookkeeping structure.
Definition bookkeeping.h:30
Path Structure.
Definition path.h:16