Added a new directory traversing method GetNextEntry() that's based on the

entry's name.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4646 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-09-12 07:15:32 +00:00
parent 3e64cf641c
commit 1fdfe0c39a

View File

@ -51,6 +51,7 @@ class Directory : public Node {
virtual Node *Lookup(const char *name, bool traverseLinks) = 0;
virtual status_t GetNextEntry(void *cookie, char *nameBuffer, size_t bufferSize) = 0;
virtual status_t GetNextNode(void *cookie, Node **_node) = 0;
virtual status_t Rewind(void *cookie) = 0;