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
10status_t
11EmptyAttributeDirectoryCookie::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
19status_t
20EmptyAttributeDirectoryCookie::Rewind()
21{
22	return B_OK;
23}
24