X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=include%2Fprt-ext.h;h=7ae8da27e26c13bd1e34af8d7ef76a3f372ab895;hp=dccd86b23ce1d99dc8f0ec5c5b86b3b156d35db4;hb=cb182c3eb21ca4405d0c9f928ceb33f3fd2f95ba;hpb=7b975f32e5bb0ae39b62167f9eb09b02be36d3f6 diff --git a/include/prt-ext.h b/include/prt-ext.h index dccd86b..7ae8da2 100644 --- a/include/prt-ext.h +++ b/include/prt-ext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 1995, Index Data. + * Copyright (c) 1995-1999, Index Data. * * Permission to use, copy, modify, distribute, and sell this software and * its documentation, in whole or in part, for any purpose, is hereby granted, @@ -33,6 +33,11 @@ #define PRT_EXT_H #include +#include + +#ifdef __cplusplus +extern "C" { +#endif /* * Used to keep track of known External definitions (a loose approach @@ -69,6 +74,10 @@ struct Z_External #define Z_External_espec1 12 #define Z_External_summary 13 #define Z_External_OPAC 14 +#define Z_External_searchResult1 15 +#define Z_External_update 16 +#define Z_External_dateTime 17 +#define Z_External_universeReport 18 union { /* Generic types */ @@ -88,10 +97,20 @@ struct Z_External Z_DiagnosticFormat *diag1; Z_Espec1 *espec1; Z_BriefBib *summary; + Z_SearchInfoReport *searchResult1; + Z_IUUpdate *update; + Z_DateTime *dateTime; + Z_UniverseReport *universeReport; } u; }; -int z_External(ODR o, Z_External **p, int opt); -Z_ext_typeent *z_ext_getentbyref(oid_value val); +YAZ_EXPORT int z_External(ODR o, Z_External **p, int opt, const char *name); +YAZ_EXPORT Z_ext_typeent *z_ext_getentbyref(oid_value val); +YAZ_EXPORT Z_External *z_ext_record(ODR o, int format, const char *buf, + int len); + +#ifdef __cplusplus +} +#endif #endif