Hits per term. Returned in SearchResult-1
[idzebra-moved-to-github.git] / include / rsisamc.h
index 5b9d33b..d443c15 100644 (file)
@@ -1,16 +1,9 @@
 /*
- * Copyright (C) 1996-1997, Index Data I/S 
+ * Copyright (C) 1996-1999, Index Data
  * All rights reserved.
  * Sebastian Hammer, Adam Dickmeiss
  *
- * $Log: rsisamc.h,v $
- * Revision 1.2  1997-09-05 15:30:04  adam
- * Changed prototype for chr_map_input - added const.
- * Added support for C++, headers uses extern "C" for public definitions.
- *
- * Revision 1.1  1996/10/29 13:41:33  adam
- * First use of isamc.
- *
+ * $Id: rsisamc.h,v 1.6 2002-03-20 20:24:29 adam Exp $
  */
 
 #ifndef RSET_ISAMC_H
 extern "C" {
 #endif
 
-extern const rset_control *rset_kind_isamc;
+extern const struct rset_control *rset_kind_isamc;
 
 typedef struct rset_isamc_parms
 {
+    int (*cmp)(const void *p1, const void *p2);
+    int key_size;
     ISAMC is;
     ISAMC_P pos;
+    RSET_TERM rset_term;
 } rset_isamc_parms;
 
 #ifdef __cplusplus