absolute_path for XFile and Entry.

This commit is contained in:
gibbed
2014-01-19 01:28:09 -08:00
parent b62134855a
commit 7da2ad30b0
9 changed files with 44 additions and 22 deletions

View File

@@ -28,12 +28,16 @@ HostPathFile::~HostPathFile() {
CloseHandle(file_handle_);
}
const char* HostPathFile::name(void) {
return entry_->name();
const char* HostPathFile::path(void) const {
return entry_->path();
}
const char* HostPathFile::path(void) {
return entry_->path();
const char* HostPathFile::absolute_path(void) const {
return entry_->absolute_path();
}
const char* HostPathFile::name(void) const {
return entry_->name();
}
X_STATUS HostPathFile::QueryInfo(XFileInfo* out_info) {