projects
/
idzebra-moved-to-github.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
print func
[idzebra-moved-to-github.git]
/
include
/
rsisams.h
1
/*
2
* Copyright (C) 1996-1999, Index Data
3
* All rights reserved.
4
* Sebastian Hammer, Adam Dickmeiss
5
*
6
* $Id: rsisams.h,v 1.1 1999-05-12 15:24:25 adam Exp $
7
*/
8
9
#ifndef RSET_ISAMS_H
10
#define RSET_ISAMS_H
11
12
#include <rset.h>
13
#include <isams.h>
14
15
#ifdef __cplusplus
16
extern "C" {
17
#endif
18
19
extern const struct rset_control *rset_kind_isams;
20
21
typedef struct rset_isams_parms
22
{
23
ISAMS is;
24
ISAMS_P pos;
25
RSET_TERM rset_term;
26
} rset_isams_parms;
27
28
#ifdef __cplusplus
29
}
30
#endif
31
32
#endif