mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 16:47:57 -05:00
Implement FS_User::GetFreeBytes
This commit is contained in:
@ -166,6 +166,13 @@ ResultCode RenameDirectoryBetweenArchives(ArchiveHandle src_archive_handle, cons
|
||||
ResultVal<Kernel::SharedPtr<Directory>> OpenDirectoryFromArchive(ArchiveHandle archive_handle,
|
||||
const FileSys::Path& path);
|
||||
|
||||
/**
|
||||
* Get the free space in an Archive
|
||||
* @param archive_handle Handle to an open Archive object
|
||||
* @return The number of free bytes in the archive
|
||||
*/
|
||||
ResultVal<u64> GetFreeBytesInArchive(ArchiveHandle archive_handle);
|
||||
|
||||
/**
|
||||
* Erases the contents of the physical folder that contains the archive
|
||||
* identified by the specified id code and path
|
||||
|
Reference in New Issue
Block a user