X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Frsisam.h;h=0148fde801a76de10b49650f00d036ad7079bdff;hb=85a2a0b28cb516d28ac70b7824f2b7d4b07e56ae;hp=a2364f3c1b5a9accfc8fdfe991795bcb8f33bb9d;hpb=affd7e4168d70b94e015b777748b7eca1cd00ec0;p=idzebra-moved-to-github.git diff --git a/include/rsisam.h b/include/rsisam.h index a2364f3..0148fde 100644 --- a/include/rsisam.h +++ b/include/rsisam.h @@ -1,26 +1,46 @@ /* - * Copyright (C) 1994, Index Data I/S + * Copyright (C) 1994-1998, Index Data I/S * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * * $Log: rsisam.h,v $ - * Revision 1.1 1994-11-04 13:21:23 quinn + * 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 1995/09/04 09:09:53 adam + * String arg in dict lookup is const. + * Minor changes. + * + * Revision 1.1 1994/11/04 13:21:23 quinn * Working. * */ -#ifndef RSET_TEMP_H -#define RSET_TEMP_H +#ifndef RSET_ISAM_H +#define RSET_ISAM_H #include #include -extern const rset_control *rset_kind_isam; +#ifdef __cplusplus +extern "C" { +#endif + +extern const struct rset_control *rset_kind_isam; typedef struct rset_isam_parms { ISAM is; ISAM_P pos; + RSET_TERM rset_term; } rset_isam_parms; +#ifdef __cplusplus +} +#endif + #endif