Changed prototype for chr_map_input - added const.
[idzebra-moved-to-github.git] / include / rstemp.h
1 /*
2  * Copyright (C) 1994-1997, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: rstemp.h,v $
7  * Revision 1.3  1997-09-05 15:30:05  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 15:20:13  adam
12  * More work on temp sets. is_open member removed.
13  *
14  * Revision 1.1  1994/11/04  13:21:23  quinn
15  * Working.
16  *
17  */
18
19 #ifndef RSET_TEMP_H
20 #define RSET_TEMP_H
21
22 #include <rset.h>
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27
28 extern const rset_control *rset_kind_temp;
29
30 typedef struct rset_temp_parms
31 {
32     int     key_size;
33 } rset_temp_parms;
34
35 #ifdef __cplusplus
36 }
37 #endif
38
39 #endif