QueryVolume, QueryFileSystemAttributes stubs with accompanying XVolumeInfo and XFileSystemAttributeInfo. Needs further improvement.

This commit is contained in:
gibbed
2014-01-22 17:54:10 -08:00
parent 61093245a5
commit 6671908375
14 changed files with 139 additions and 0 deletions

View File

@@ -88,6 +88,16 @@ X_STATUS STFSContainerEntry::QueryDirectory(
return X_STATUS_SUCCESS;
}
X_STATUS STFSContainerEntry::QueryVolume(XVolumeInfo* out_info, size_t length) {
XEASSERTALWAYS();
return X_STATUS_NOT_IMPLEMENTED;
}
X_STATUS STFSContainerEntry::QueryFileSystemAttributes(XFileSystemAttributeInfo* out_info, size_t length) {
XEASSERTALWAYS();
return X_STATUS_NOT_IMPLEMENTED;
}
X_STATUS STFSContainerEntry::Open(
KernelState* kernel_state,
uint32_t desired_access, bool async,