1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2025-02-11 11:15:07 +00:00
Atmosphere/fusee/fusee-primary/src/sd_utils.h

14 lines
282 B
C
Raw Normal View History

2018-04-07 15:43:54 -06:00
#ifndef FUSEE_SD_UTILS_H
#define FUSEE_SD_UTILS_H
#include "utils.h"
#include "sdmmc.h"
2018-05-05 00:11:22 +02:00
#include "lib/fatfs/ff.h"
void save_sd_state(void **mmc, void **ff);
void resume_sd_state(void *mmc, void *ff);
2018-04-07 15:43:54 -06:00
size_t read_sd_file(void *dst, size_t dst_size, const char *filename);
2018-04-07 15:43:54 -06:00
2018-05-05 00:11:22 +02:00
#endif