X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Frsnull.h;h=204903e40a8ec9ac8253549884dddc3743edca0b;hb=ce3907338568fce46c5751e7e1091a5ad1c8e291;hp=ff0a32283876359533a792fa4c4012fa72575a0c;hpb=b7ed8922d365e24874e561b7347c2c2ad682d6d8;p=idzebra-moved-to-github.git diff --git a/include/rsnull.h b/include/rsnull.h index ff0a322..204903e 100644 --- a/include/rsnull.h +++ b/include/rsnull.h @@ -1,10 +1,17 @@ /* - * Copyright (C) 1994-1995, Index Data I/S + * Copyright (C) 1994-1997, Index Data I/S * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * * $Log: rsnull.h,v $ - * Revision 1.1 1995-09-06 10:36:16 adam + * Revision 1.3 1998-03-05 08:37:44 adam + * New result set model. + * + * Revision 1.2 1997/09/05 15:30:05 adam + * Changed prototype for chr_map_input - added const. + * Added support for C++, headers uses extern "C" for public definitions. + * + * Revision 1.1 1995/09/06 10:36:16 adam * Null set implemented. * */ @@ -14,6 +21,21 @@ #include -extern const rset_control *rset_kind_null; +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct rset_null_parms +{ + int key_size; + char *temp_path; + RSET_TERM rset_term; +} rset_null_parms; + +extern const struct rset_control *rset_kind_null; + +#ifdef __cplusplus +} +#endif #endif