UbixOS V2  2.0
btreeheader.h
Go to the documentation of this file.
1 /*#ifndef BTREEHEADER_H
2 #define BTREEHEADER_H
3 
4 typedef struct bTreeHeader {
5  uInt32 treeDepth;
6  uInt32 treeWidth;
7  uInt32 treeLeafCount;
8  off_t firstNodeOffset; // used when tree is on disk
9  off_t firstDeleted; // used to point to an empty node
10  char paddington[4068];
11 } bTreeHeader; // bTreeHeader
12 
13 #endif*/ /* !BTREEHEADER_H */