X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Frsm_or.h;h=c934b8a6202021958ce65563457f0612c2268a29;hb=392b67432545d96cb2f9b3264a9427582fc1934f;hp=74647b8521e68fa3f0daab1752ee5159ecff4263;hpb=01d003d2633f2c160e255737ae63165effaf2dde;p=idzebra-moved-to-github.git diff --git a/include/rsm_or.h b/include/rsm_or.h index 74647b8..c934b8a 100644 --- a/include/rsm_or.h +++ b/include/rsm_or.h @@ -1,10 +1,20 @@ /* - * Copyright (C) 1994-1996, Index Data I/S + * Copyright (C) 1994-1997, Index Data I/S * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * * $Log: rsm_or.h,v $ - * Revision 1.1 1996-12-20 11:06:45 adam + * Revision 1.4 1998-03-05 08:37:44 adam + * New result set model. + * + * Revision 1.3 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.2 1996/12/23 15:29:54 adam + * More work on truncation algorithm. + * + * Revision 1.1 1996/12/20 11:06:45 adam * Implemented multi-or result set. * * @@ -15,7 +25,11 @@ #include -extern const rset_control *rset_kind_m_or; +#ifdef __cplusplus +extern "C" { +#endif + +extern const struct rset_control *rset_kind_m_or; typedef struct rset_m_or_parms { @@ -24,8 +38,14 @@ typedef struct rset_m_or_parms ISAMC isc; ISAM_P *isam_positions; + RSET_TERM rset_term; int no_isam_positions; + int no_save_positions; } rset_m_or_parms; +#ifdef __cplusplus +} +#endif + #endif