Must have accidently implemented BQuery::Rewind() when migrating to our syscalls.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10681 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -629,14 +629,16 @@ BQuery::GetNextDirents(struct dirent *buf, size_t length, int32 count)
|
|||||||
|
|
||||||
// Rewind
|
// Rewind
|
||||||
/*! \brief Rewinds the entry list back to the first entry.
|
/*! \brief Rewinds the entry list back to the first entry.
|
||||||
|
|
||||||
|
Not implemented for BQuery.
|
||||||
|
|
||||||
\return
|
\return
|
||||||
- \c B_OK on success,
|
- \c B_ERROR
|
||||||
- \c B_FILE_ERROR if Fetch() has not yet been called
|
|
||||||
*/
|
*/
|
||||||
status_t
|
status_t
|
||||||
BQuery::Rewind()
|
BQuery::Rewind()
|
||||||
{
|
{
|
||||||
return _kern_rewind_dir(fQueryFd);
|
return B_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
// CountEntries
|
// CountEntries
|
||||||
|
|||||||
Reference in New Issue
Block a user