mirror of
https://github.com/joel16/3DSident.git
synced 2024-11-23 03:29:45 +00:00
bdf282adbd
- 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.
13 lines
266 B
C
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
|