1 /*
2 * Copyright 2011, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5
6
7 #include "EmptyAttributeDirectoryCookie.h"
8
9
10 status_t
Read(dev_t volumeID,ino_t nodeID,struct dirent * buffer,size_t bufferSize,uint32 * _count)11 EmptyAttributeDirectoryCookie::Read(dev_t volumeID, ino_t nodeID,
12 struct dirent* buffer, size_t bufferSize, uint32* _count)
13 {
14 *_count = 0;
15 return B_OK;
16 }
17
18
19 status_t
Rewind()20 EmptyAttributeDirectoryCookie::Rewind()
21 {
22 return B_OK;
23 }
24