QueryFileSystemAttributes/QueryVolume for STFS/ISO.

This commit is contained in:
Ben Vanik
2015-01-05 22:32:44 -08:00
parent 58e71c7ff3
commit 1a70606904
10 changed files with 105 additions and 117 deletions

View File

@@ -29,9 +29,9 @@ class Device {
virtual std::unique_ptr<Entry> ResolvePath(const char* path) = 0;
virtual X_STATUS QueryVolume(XVolumeInfo* out_info, size_t length) = 0;
virtual X_STATUS QueryVolume(XVolumeInfo* out_info, size_t length);
virtual X_STATUS QueryFileSystemAttributes(XFileSystemAttributeInfo* out_info,
size_t length) = 0;
size_t length);
protected:
std::string path_;