2019-12-09 11:57:37 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2019-12-09 11:57:37 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
2021-10-01 02:21:08 +00:00
|
|
|
#include <stratosphere/fs/fs_common.hpp>
|
2019-12-09 11:57:37 +00:00
|
|
|
|
|
|
|
namespace ams::fs {
|
|
|
|
|
2022-03-24 15:43:40 +00:00
|
|
|
/* ACCURATE_TO_VERSION: Unknown */
|
2019-12-09 11:57:37 +00:00
|
|
|
constexpr inline size_t EntryNameLengthMax = 0x300;
|
|
|
|
|
2022-03-06 20:08:20 +00:00
|
|
|
struct DirectoryEntry {
|
|
|
|
char name[EntryNameLengthMax + 1];
|
|
|
|
char pad[3];
|
|
|
|
s8 type;
|
|
|
|
u8 pad2[3];
|
|
|
|
s64 file_size;
|
|
|
|
};
|
2019-12-09 11:57:37 +00:00
|
|
|
|
2020-03-08 08:06:23 +00:00
|
|
|
struct DirectoryHandle {
|
|
|
|
void *handle;
|
|
|
|
};
|
|
|
|
|
|
|
|
Result ReadDirectory(s64 *out_count, DirectoryEntry *out_entries, DirectoryHandle handle, s64 max_entries);
|
|
|
|
Result GetDirectoryEntryCount(s64 *out, DirectoryHandle handle);
|
|
|
|
void CloseDirectory(DirectoryHandle handle);
|
|
|
|
|
2019-12-09 11:57:37 +00:00
|
|
|
}
|