NtQueryDirectoryFile and necessary backing. Not fully functional yet.

This commit is contained in:
gibbed
2014-01-18 05:59:22 -08:00
parent c257ad0122
commit 619b9758a0
9 changed files with 206 additions and 2 deletions

View File

@@ -30,6 +30,7 @@ public:
const xechar_t* local_path() { return local_path_; }
virtual X_STATUS QueryInfo(XFileInfo* out_info);
virtual X_STATUS QueryDirectory(XDirectoryInfo* out_info, size_t length, bool restart);
virtual MemoryMapping* CreateMemoryMapping(
xe_file_mode file_mode, const size_t offset, const size_t length);
@@ -41,6 +42,7 @@ public:
private:
xechar_t* local_path_;
HANDLE find_file_;
};