Mercurial > repos > blastem
view saves.h @ 1674:c362f2c7766a
Moved fake virtual root stuff to get_dir_list from legacy menu so it can be used in new UI
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Thu, 03 Jan 2019 23:30:17 -0800 |
parents | da1dce39e846 |
children | 319d90025d50 |
line wrap: on
line source
#ifndef SAVES_H_ #define SAVES_H_ #include <time.h> #include <stdint.h> #include "system.h" #define QUICK_SAVE_SLOT 10 typedef struct { char *desc; time_t modification_time; } save_slot_info; char *get_slot_name(system_header *system, uint32_t slot_index, char *ext); save_slot_info *get_slot_info(system_header *system, uint32_t *num_out); void free_slot_info(save_slot_info *slots); #endif //SAVES_H_