xref: /haiku/src/add-ons/kernel/file_systems/packagefs/nodes/EmptyAttributeDirectoryCookie.cpp (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
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
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
20 EmptyAttributeDirectoryCookie::Rewind()
21 {
22 	return B_OK;
23 }
24