diff options
| author | 2024-01-18 23:08:37 +0100 | |
|---|---|---|
| committer | 2024-01-25 16:42:06 -0500 | |
| commit | 2c049ae06dbbdfff7542c23ca4d748879f4beb71 (patch) | |
| tree | f93c8be5b6d1781a69d8c28e6aa3500d34c8b55b /src/core/hle/service/filesystem | |
| parent | result: Make fully constexpr, add ON_RESULT_INCLUDED (diff) | |
| download | yuzu-2c049ae06dbbdfff7542c23ca4d748879f4beb71.tar.gz yuzu-2c049ae06dbbdfff7542c23ca4d748879f4beb71.tar.xz yuzu-2c049ae06dbbdfff7542c23ca4d748879f4beb71.zip | |
fs: Add path class
Diffstat (limited to 'src/core/hle/service/filesystem')
| -rw-r--r-- | src/core/hle/service/filesystem/fsp/fs_i_directory.cpp | 1 | ||||
| -rw-r--r-- | src/core/hle/service/filesystem/fsp/fs_i_directory.h | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/core/hle/service/filesystem/fsp/fs_i_directory.cpp b/src/core/hle/service/filesystem/fsp/fs_i_directory.cpp index 1e8ef366e..39690018b 100644 --- a/src/core/hle/service/filesystem/fsp/fs_i_directory.cpp +++ b/src/core/hle/service/filesystem/fsp/fs_i_directory.cpp | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | // SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project | 1 | // SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project |
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | 2 | // SPDX-License-Identifier: GPL-2.0-or-later |
| 3 | 3 | ||
| 4 | #include "core/file_sys/fs_filesystem.h" | ||
| 4 | #include "core/file_sys/savedata_factory.h" | 5 | #include "core/file_sys/savedata_factory.h" |
| 5 | #include "core/hle/service/filesystem/fsp/fs_i_directory.h" | 6 | #include "core/hle/service/filesystem/fsp/fs_i_directory.h" |
| 6 | #include "core/hle/service/ipc_helpers.h" | 7 | #include "core/hle/service/ipc_helpers.h" |
diff --git a/src/core/hle/service/filesystem/fsp/fs_i_directory.h b/src/core/hle/service/filesystem/fsp/fs_i_directory.h index 9f5d7c054..793ecfcd7 100644 --- a/src/core/hle/service/filesystem/fsp/fs_i_directory.h +++ b/src/core/hle/service/filesystem/fsp/fs_i_directory.h | |||
| @@ -3,12 +3,14 @@ | |||
| 3 | 3 | ||
| 4 | #pragma once | 4 | #pragma once |
| 5 | 5 | ||
| 6 | #include "core/file_sys/fs_filesystem.h" | ||
| 7 | #include "core/file_sys/vfs/vfs.h" | 6 | #include "core/file_sys/vfs/vfs.h" |
| 8 | #include "core/hle/service/filesystem/filesystem.h" | 7 | #include "core/hle/service/filesystem/filesystem.h" |
| 9 | #include "core/hle/service/filesystem/fsp/fsp_util.h" | ||
| 10 | #include "core/hle/service/service.h" | 8 | #include "core/hle/service/service.h" |
| 11 | 9 | ||
| 10 | namespace FileSys { | ||
| 11 | struct DirectoryEntry; | ||
| 12 | } | ||
| 13 | |||
| 12 | namespace Service::FileSystem { | 14 | namespace Service::FileSystem { |
| 13 | 15 | ||
| 14 | class IDirectory final : public ServiceFramework<IDirectory> { | 16 | class IDirectory final : public ServiceFramework<IDirectory> { |