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