1b9795fafSAugustin Cavalier /* 2b9795fafSAugustin Cavalier * Copyright 2007, Ingo Weinhold, ingo_weinhold@gmx.de. 3b9795fafSAugustin Cavalier * All rights reserved. Distributed under the terms of the MIT license. 4b9795fafSAugustin Cavalier */ 5224e7c42SIngo Weinhold 6224e7c42SIngo Weinhold #ifndef RAM_FS_H 7224e7c42SIngo Weinhold #define RAM_FS_H 8224e7c42SIngo Weinhold 9224e7c42SIngo Weinhold #include <SupportDefs.h> 10224e7c42SIngo Weinhold 11c3e0275cSAugustin Cavalier extern struct fs_vnode_ops gRamFSVnodeOps; 12*b2c20927SAugustin Cavalier extern struct fs_volume_ops gRamFSVolumeOps; 13224e7c42SIngo Weinhold const size_t kMaxIndexKeyLength = 256; 14224e7c42SIngo Weinhold 15224e7c42SIngo Weinhold #endif // RAM_FS_H 16