Minor.
[idzebra-moved-to-github.git] / include / rsnull.h
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: rsnull.h,v $
7  * Revision 1.4  1999-02-02 14:50:42  adam
8  * Updated WIN32 code specific sections. Changed header.
9  *
10  * Revision 1.3  1998/03/05 08:37:44  adam
11  * New result set model.
12  *
13  * Revision 1.2  1997/09/05 15:30:05  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.1  1995/09/06 10:36:16  adam
18  * Null set implemented.
19  *
20  */
21
22 #ifndef RSET_NULL_H
23 #define RSET_NULL_H
24
25 #include <rset.h>
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 typedef struct rset_null_parms
32 {
33     int     key_size;
34     char   *temp_path;
35     RSET_TERM rset_term;    
36 } rset_null_parms;
37
38 extern const struct rset_control *rset_kind_null;
39
40 #ifdef __cplusplus
41 }
42 #endif
43
44 #endif