diff options
author | archshift <admin@archshift.com> | 2014-11-10 23:36:32 +0100 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-11-13 04:30:17 +0100 |
commit | 1f7c4ab7f6c5b65d6569a1981b04c1d2ac33b713 (patch) | |
tree | 61693418f0cbfeddf4e416bae0d265691bf0dfa9 /src/core/hle/service/fs_user.h | |
parent | Add support for UTF-16 strings for LowPaths in FS:USER (diff) | |
download | yuzu-1f7c4ab7f6c5b65d6569a1981b04c1d2ac33b713.tar yuzu-1f7c4ab7f6c5b65d6569a1981b04c1d2ac33b713.tar.gz yuzu-1f7c4ab7f6c5b65d6569a1981b04c1d2ac33b713.tar.bz2 yuzu-1f7c4ab7f6c5b65d6569a1981b04c1d2ac33b713.tar.lz yuzu-1f7c4ab7f6c5b65d6569a1981b04c1d2ac33b713.tar.xz yuzu-1f7c4ab7f6c5b65d6569a1981b04c1d2ac33b713.tar.zst yuzu-1f7c4ab7f6c5b65d6569a1981b04c1d2ac33b713.zip |
Diffstat (limited to 'src/core/hle/service/fs_user.h')
-rw-r--r-- | src/core/hle/service/fs_user.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/core/hle/service/fs_user.h b/src/core/hle/service/fs_user.h index 44f89ef4a..005382540 100644 --- a/src/core/hle/service/fs_user.h +++ b/src/core/hle/service/fs_user.h @@ -11,35 +11,6 @@ namespace FS_User { -class FS_Path { -public: - // Command to access archive file - enum LowPathType : u32 { - Invalid = 0, - Empty = 1, - Binary = 2, - Char = 3, - Wchar = 4 - }; - - FS_Path(LowPathType type, u32 size, u32 pointer); - - LowPathType GetType() const; - - const std::vector<u8>& GetBinary() const; - const std::string& GetString() const; - const std::u16string& GetU16Str() const; - - std::string AsString(); - std::u16string AsU16Str(); - -private: - LowPathType type; - std::vector<u8> binary; - std::string string; - std::u16string u16str; -}; - /// Interface to "fs:USER" service class Interface : public Service::Interface { public: |