3DSident/common/fs.h
Joel16 bdf282adbd Make things ready for the final release
- Remove screenshot function since rosalina can now be used.
- Fixed device ID display on GUI.
- Lowered size for WiFi and Storage menu in GUI
- Console will now exit with any button excluding the rosalina activation buttons.
2018-08-02 23:38:53 -05:00

13 lines
266 B
C

#ifndef _3DSIDENT_FS_H_
#define _3DSIDENT_FS_H_
#include <3ds.h>
FS_Archive archive;
Result FS_OpenArchive(FS_Archive *archive, FS_ArchiveID archiveID);
Result FS_CloseArchive(FS_Archive archive);
bool FS_FileExists(FS_Archive archive, const char *path);
#endif