Changed prototype for chr_map_input - added const.
[idzebra-moved-to-github.git] / include / rsisamc.h
1 /*
2  * Copyright (C) 1996-1997, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: rsisamc.h,v $
7  * Revision 1.2  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.1  1996/10/29 13:41:33  adam
12  * First use of isamc.
13  *
14  */
15
16 #ifndef RSET_ISAMC_H
17 #define RSET_ISAMC_H
18
19 #include <rset.h>
20 #include <isamc.h>
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 extern const rset_control *rset_kind_isamc;
27
28 typedef struct rset_isamc_parms
29 {
30     ISAMC is;
31     ISAMC_P pos;
32 } rset_isamc_parms;
33
34 #ifdef __cplusplus
35 }
36 #endif
37
38 #endif