New result set model.
[idzebra-moved-to-github.git] / include / rsnull.h
1 /*
2  * Copyright (C) 1994-1997, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: rsnull.h,v $
7  * Revision 1.3  1998-03-05 08:37:44  adam
8  * New result set model.
9  *
10  * Revision 1.2  1997/09/05 15:30:05  adam
11  * Changed prototype for chr_map_input - added const.
12  * Added support for C++, headers uses extern "C" for public definitions.
13  *
14  * Revision 1.1  1995/09/06 10:36:16  adam
15  * Null set implemented.
16  *
17  */
18
19 #ifndef RSET_NULL_H
20 #define RSET_NULL_H
21
22 #include <rset.h>
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27
28 typedef struct rset_null_parms
29 {
30     int     key_size;
31     char   *temp_path;
32     RSET_TERM rset_term;    
33 } rset_null_parms;
34
35 extern const struct rset_control *rset_kind_null;
36
37 #ifdef __cplusplus
38 }
39 #endif
40
41 #endif