mirror of
https://github.com/joel16/3DSident.git
synced 2024-11-23 03:29:45 +00:00
99fc2e4c58
Basically cleaning up and making sure functions succeed before returning the result.
10 lines
213 B
C
10 lines
213 B
C
#ifndef STORAGE_H
|
|
#define STORAGE_H
|
|
|
|
#include <3ds.h>
|
|
|
|
u64 getFreeStorage(FS_SystemMediaType mediaType);
|
|
u64 getTotalStorage(FS_SystemMediaType mediaType);
|
|
u64 getUsedStorage(FS_SystemMediaType mediaType);
|
|
|
|
#endif |