N64FlashcartMenu
Loading...
Searching...
No Matches
bookkeeping.c File Reference

Bookkeeping functions for history and favorites. More...

Functions

void bookkeeping_init (char *path)
 Initialize the bookkeeping system with the specified path.
 
void bookkeeping_ini_load_list (bookkeeping_item_t *list, int count, mini_t *ini, const char *group)
 Load a list of bookkeeping items from an INI file.
 
void bookkeeping_load (bookkeeping_t *history)
 Load the bookkeeping history and favorites from the history file.
 
void bookkeeping_save (bookkeeping_t *history)
 Save the bookkeeping history and favorites to the history file.
 
void bookkeeping_history_add (bookkeeping_t *bookkeeping, path_t *primary_path, path_t *secondary_path, bookkeeping_item_types_t type)
 Add a new item to the bookkeeping history.
 
void bookkeeping_favorite_add (bookkeeping_t *bookkeeping, path_t *primary_path, path_t *secondary_path, bookkeeping_item_types_t type)
 Add a new item to the bookkeeping favorites.
 
void bookkeeping_favorite_remove (bookkeeping_t *bookkeeping, int selection)
 Remove an item from the bookkeeping favorites.
 

Detailed Description

Bookkeeping functions for history and favorites.

Function Documentation

◆ bookkeeping_init()

void bookkeeping_init ( char * path)

Initialize the bookkeeping system with the specified path.

Initialize ROM bookkeeping path.

Parameters
pathPath to the history file.

◆ bookkeeping_ini_load_list()

void bookkeeping_ini_load_list ( bookkeeping_item_t * list,
int count,
mini_t * ini,
const char * group )

Load a list of bookkeeping items from an INI file.

Parameters
listPointer to the list of bookkeeping items.
countNumber of items in the list.
iniPointer to the INI file structure.
groupName of the group in the INI file.

◆ bookkeeping_load()

void bookkeeping_load ( bookkeeping_t * history)

Load the bookkeeping history and favorites from the history file.

Load ROM bookkeeping.

Parameters
historyPointer to the bookkeeping structure.

◆ bookkeeping_save()

void bookkeeping_save ( bookkeeping_t * history)

Save the bookkeeping history and favorites to the history file.

Save ROM bookkeeping.

Parameters
historyPointer to the bookkeeping structure.

◆ bookkeeping_history_add()

void bookkeeping_history_add ( bookkeeping_t * bookkeeping,
path_t * primary_path,
path_t * secondary_path,
bookkeeping_item_types_t type )

Add a new item to the bookkeeping history.

Add a ROM to the history.

Parameters
bookkeepingPointer to the bookkeeping structure.
primary_pathPointer to the primary path.
secondary_pathPointer to the secondary path.
typeThe type of the bookkeeping item.

◆ bookkeeping_favorite_add()

void bookkeeping_favorite_add ( bookkeeping_t * bookkeeping,
path_t * primary_path,
path_t * secondary_path,
bookkeeping_item_types_t type )

Add a new item to the bookkeeping favorites.

Add a ROM to the favorites.

Parameters
bookkeepingPointer to the bookkeeping structure.
primary_pathPointer to the primary path.
secondary_pathPointer to the secondary path.
typeThe type of the bookkeeping item.

◆ bookkeeping_favorite_remove()

void bookkeeping_favorite_remove ( bookkeeping_t * bookkeeping,
int selection )

Remove an item from the bookkeeping favorites.

Remove a ROM from the favorites.

Parameters
bookkeepingPointer to the bookkeeping structure.
selectionIndex of the item to remove.