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

Bookkeeping of loaded ROMs. More...

Go to the source code of this file.

Data Structures

struct  bookkeeping_item_t
 Bookkeeping item structure. More...
 
struct  bookkeeping_t
 ROM bookkeeping structure. More...
 

Macros

#define FAVORITES_COUNT   8
 
#define HISTORY_COUNT   8
 

Enumerations

enum  bookkeeping_item_types_t { BOOKKEEPING_TYPE_EMPTY , BOOKKEEPING_TYPE_ROM , BOOKKEEPING_TYPE_DISK }
 Bookkeeping item types enumeration. More...
 

Functions

void bookkeeping_init (char *path)
 Initialize ROM bookkeeping path.
 
void bookkeeping_load (bookkeeping_t *history)
 Load ROM bookkeeping.
 
void bookkeeping_save (bookkeeping_t *history)
 Save ROM bookkeeping.
 
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.
 
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.
 
void bookkeeping_favorite_remove (bookkeeping_t *bookkeeping, int selection)
 Remove a ROM from the favorites.
 

Detailed Description

Bookkeeping of loaded ROMs.


Data Structure Documentation

◆ bookkeeping_item_t

struct bookkeeping_item_t

Bookkeeping item structure.

Data Fields
path_t * primary_path

Primary path

path_t * secondary_path

Secondary path

bookkeeping_item_types_t bookkeeping_type

Bookkeeping item type

◆ bookkeeping_t

struct bookkeeping_t

ROM bookkeeping structure.

Data Fields
bookkeeping_item_t history_items[HISTORY_COUNT]

History items

bookkeeping_item_t favorite_items[FAVORITES_COUNT]

Favorite items

Macro Definition Documentation

◆ FAVORITES_COUNT

#define FAVORITES_COUNT   8

Maximum number of favorite items

◆ HISTORY_COUNT

#define HISTORY_COUNT   8

Maximum number of history items

Enumeration Type Documentation

◆ bookkeeping_item_types_t

Bookkeeping item types enumeration.

Enumerator
BOOKKEEPING_TYPE_EMPTY 

Empty item

BOOKKEEPING_TYPE_ROM 

ROM item

BOOKKEEPING_TYPE_DISK 

Disk item

Function Documentation

◆ bookkeeping_init()

void bookkeeping_init ( char * path)

Initialize ROM bookkeeping path.

Parameters
pathThe path to initialize.

Initialize ROM bookkeeping path.

Parameters
pathPath to the history file.

◆ bookkeeping_load()

void bookkeeping_load ( bookkeeping_t * history)

Load ROM bookkeeping.

Parameters
historyPointer to the bookkeeping structure to load.

Load ROM bookkeeping.

Parameters
historyPointer to the bookkeeping structure.

◆ bookkeeping_save()

void bookkeeping_save ( bookkeeping_t * history)

Save ROM bookkeeping.

Parameters
historyPointer to the bookkeeping structure to save.

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 ROM to the history.

Parameters
bookkeepingThe bookkeeping structure.
primary_pathThe primary path of the ROM.
secondary_pathThe secondary path of the ROM.
typeThe type of the bookkeeping item.

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 ROM to the favorites.

Parameters
bookkeepingThe bookkeeping structure.
primary_pathThe primary path of the ROM.
secondary_pathThe secondary path of the ROM.
typeThe type of the bookkeeping item.

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 a ROM from the favorites.

Parameters
bookkeepingThe bookkeeping structure.
selectionThe index of the favorite item to remove.

Remove a ROM from the favorites.

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