Started work on better record management system.
[idzebra-moved-to-github.git] / index / recindex.h
1 /*
2  * Copyright (C) 1994-1995, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: recindex.h,v $
7  * Revision 1.1  1995-11-15 14:46:21  adam
8  * Started work on better record management system.
9  *
10  */
11
12 #include <alexutil.h>
13
14 typedef struct records_info {
15     int fd;
16     char *fname;
17     struct records_head {
18         char magic[8];
19         int no_records;
20         int freelist;
21     } head;
22 } *Records;
23
24 typedef struct record_info {
25     int sysno;
26     char *type;
27     char *fname;
28     char *kinfo;
29 } *Record;
30