diff options
| author | 2018-10-12 22:55:49 -0400 | |
|---|---|---|
| committer | 2018-10-12 22:55:49 -0400 | |
| commit | 1584fb6b385d51ef40e1e22c180322a552d9c98a (patch) | |
| tree | f129dca6721bac37c7cd96657cdcc77401899f1c /src/core/file_sys/vfs.h | |
| parent | Merge pull request #1483 from lioncash/codeset (diff) | |
| parent | partition_data_manager: Rename system files for hekate (diff) | |
| download | yuzu-1584fb6b385d51ef40e1e22c180322a552d9c98a.tar.gz yuzu-1584fb6b385d51ef40e1e22c180322a552d9c98a.tar.xz yuzu-1584fb6b385d51ef40e1e22c180322a552d9c98a.zip | |
Merge pull request #1409 from DarkLordZach/key-derivation
crypto: Add support for full key derivation
Diffstat (limited to 'src/core/file_sys/vfs.h')
| -rw-r--r-- | src/core/file_sys/vfs.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/core/file_sys/vfs.h b/src/core/file_sys/vfs.h index 270291631..7f0d520ca 100644 --- a/src/core/file_sys/vfs.h +++ b/src/core/file_sys/vfs.h | |||
| @@ -12,20 +12,12 @@ | |||
| 12 | #include <vector> | 12 | #include <vector> |
| 13 | #include <boost/optional.hpp> | 13 | #include <boost/optional.hpp> |
| 14 | #include "common/common_types.h" | 14 | #include "common/common_types.h" |
| 15 | #include "core/file_sys/vfs_types.h" | ||
| 15 | 16 | ||
| 16 | namespace FileSys { | 17 | namespace FileSys { |
| 17 | 18 | ||
| 18 | class VfsDirectory; | ||
| 19 | class VfsFile; | ||
| 20 | class VfsFilesystem; | ||
| 21 | |||
| 22 | enum class Mode : u32; | 19 | enum class Mode : u32; |
| 23 | 20 | ||
| 24 | // Convenience typedefs to use Vfs* interfaces | ||
| 25 | using VirtualFilesystem = std::shared_ptr<VfsFilesystem>; | ||
| 26 | using VirtualDir = std::shared_ptr<VfsDirectory>; | ||
| 27 | using VirtualFile = std::shared_ptr<VfsFile>; | ||
| 28 | |||
| 29 | // An enumeration representing what can be at the end of a path in a VfsFilesystem | 21 | // An enumeration representing what can be at the end of a path in a VfsFilesystem |
| 30 | enum class VfsEntryType { | 22 | enum class VfsEntryType { |
| 31 | None, | 23 | None, |