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

@@ -12,6 +12,7 @@
#include <poly/math.h>
#include <xenia/kernel/fs/stfs.h>
#include <xenia/kernel/fs/devices/stfs_container_entry.h>
#include <xenia/kernel/objects/xfile.h>
namespace xe {
namespace kernel {
@@ -68,18 +69,6 @@ std::unique_ptr<Entry> STFSContainerDevice::ResolvePath(const char* path) {
stfs_entry);
}
X_STATUS STFSContainerDevice::QueryVolume(XVolumeInfo* out_info,
size_t length) {
assert_always();
return X_STATUS_NOT_IMPLEMENTED;
}
X_STATUS STFSContainerDevice::QueryFileSystemAttributes(
XFileSystemAttributeInfo* out_info, size_t length) {
assert_always();
return X_STATUS_NOT_IMPLEMENTED;
}
} // namespace fs
} // namespace kernel
} // namespace xe