[VFS] SVOD (with EGDF) support

This commit is contained in:
Dr. Chat
2018-05-29 14:10:09 -05:00
parent 62bb26878f
commit a0464f54ba
4 changed files with 250 additions and 77 deletions

View File

@@ -98,6 +98,9 @@ class Entry {
Entry* GetChild(std::string name);
const std::vector<std::unique_ptr<Entry>>& children() const {
return children_;
}
size_t child_count() const { return children_.size(); }
Entry* IterateChildren(const xe::filesystem::WildcardEngine& engine,
size_t* current_index);