mirror of
https://github.com/joel16/3DSident.git
synced 2024-11-26 21:10:24 +00:00
10 lines
259 B
C
10 lines
259 B
C
|
#ifndef _3DSIDENT_STORAGE_H_
|
||
|
#define _3DSIDENT_STORAGE_H_
|
||
|
|
||
|
#include <3ds.h>
|
||
|
|
||
|
u64 Storage_GetFreeStorage(FS_SystemMediaType mediaType);
|
||
|
u64 Storage_GetTotalStorage(FS_SystemMediaType mediaType);
|
||
|
u64 Storage_GetUsedStorage(FS_SystemMediaType mediaType);
|
||
|
|
||
|
#endif
|