isamb work
[idzebra-moved-to-github.git] / include / rsisamb.h
1 /*
2  * Copyright (C) 2001-2002, Index Data
3  * All rights reserved.
4  *
5  * $Id: rsisamb.h,v 1.1 2002-04-16 22:31:42 adam Exp $
6  */
7
8 #ifndef RSET_ISAMB_H
9 #define RSET_ISAMB_H
10
11 #include <rset.h>
12 #include <isamb.h>
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17
18 extern const struct rset_control *rset_kind_isamb;
19
20 typedef struct rset_isamb_parms
21 {
22     int (*cmp)(const void *p1, const void *p2);
23     int key_size;
24     ISAMB is;
25     ISAMB_P pos;
26     RSET_TERM rset_term;
27 } rset_isamb_parms;
28
29 #ifdef __cplusplus
30 }
31 #endif
32
33 #endif