Updated WIN32 code specific sections. Changed header.
[idzebra-moved-to-github.git] / include / rsisam.h
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: rsisam.h,v $
7  * Revision 1.5  1999-02-02 14:50:39  adam
8  * Updated WIN32 code specific sections. Changed header.
9  *
10  * Revision 1.4  1998/03/05 08:37:44  adam
11  * New result set model.
12  *
13  * Revision 1.3  1997/09/05 15:30:04  adam
14  * Changed prototype for chr_map_input - added const.
15  * Added support for C++, headers uses extern "C" for public definitions.
16  *
17  * Revision 1.2  1995/09/04 09:09:53  adam
18  * String arg in dict lookup is const.
19  * Minor changes.
20  *
21  * Revision 1.1  1994/11/04  13:21:23  quinn
22  * Working.
23  *
24  */
25
26 #ifndef RSET_ISAM_H
27 #define RSET_ISAM_H
28
29 #include <rset.h>
30 #include <isam.h>
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35
36 extern const struct rset_control *rset_kind_isam;
37
38 typedef struct rset_isam_parms
39 {
40     ISAM is;
41     ISAM_P pos;
42     RSET_TERM rset_term;
43 } rset_isam_parms;
44
45 #ifdef __cplusplus
46 }
47 #endif
48
49 #endif