N64FlashcartMenu
Loading...
Searching...
No Matches
bookkeeping.h
Go to the documentation of this file.
1
7#ifndef BOOKKEEPING_H__
8#define BOOKKEEPING_H__
9
10#include "path.h"
11
12#define FAVORITES_COUNT 8
13#define HISTORY_COUNT 8
21
28
30typedef struct {
34
40void bookkeeping_init(char *path);
41
47void bookkeeping_load(bookkeeping_t *history);
48
54void bookkeeping_save(bookkeeping_t *history);
55
64void bookkeeping_history_add(bookkeeping_t *bookkeeping, path_t *primary_path, path_t *secondary_path, bookkeeping_item_types_t type);
65
74void bookkeeping_favorite_add(bookkeeping_t *bookkeeping, path_t *primary_path, path_t *secondary_path, bookkeeping_item_types_t type);
75
82void bookkeeping_favorite_remove(bookkeeping_t *bookkeeping, int selection);
83
84#endif /* BOOKKEEPING_H__ */
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
Menu Path.
Path Structure.
Definition path.h:16