Updated WIN32 code specific sections. Changed header.
[idzebra-moved-to-github.git] / isam / rootblk.h
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: rootblk.h,v $
7  * Revision 1.2  1999-02-02 14:51:25  adam
8  * Updated WIN32 code specific sections. Changed header.
9  *
10  * Revision 1.1  1994/09/26 16:08:00  quinn
11  * Most of the functionality in place.
12  *
13  */
14
15 #ifndef ROOTBLK_H
16 #define ROOTBLK_H
17
18 #include <isam.h>
19
20 typedef struct is_type_header
21 {
22     int blocksize;                /* for sanity-checking */
23     int keysize;                  /*   -do-  */
24     int freelist;                 /* first free block */
25     int top;                      /* first unused block */
26 } is_type_header;
27
28
29
30 int is_rb_write(isam_blocktype *ib, is_type_header *hd);
31 int is_rb_read(isam_blocktype *ib, is_type_header *hd);
32
33 #endif