X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz%2Fprt-ext.h;h=5ac3b047d96a793b19ae615b0a08fa90f4dd62df;hb=955374c92f02d9714ccd593cc03f4394f45b2053;hp=daa58209a711a25e0a00421302f86f92a0cd48df;hpb=7a4064cd15f6c6b34c1180e1bc51f0d0e90da320;p=yaz-moved-to-github.git diff --git a/include/yaz/prt-ext.h b/include/yaz/prt-ext.h index daa5820..5ac3b04 100644 --- a/include/yaz/prt-ext.h +++ b/include/yaz/prt-ext.h @@ -24,7 +24,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: prt-ext.h,v 1.16 2007-04-12 13:52:57 adam Exp $ */ +/* $Id: prt-ext.h,v 1.19 2007-05-04 12:23:54 adam Exp $ */ /** * \file prt-ext.h @@ -50,11 +50,7 @@ YAZ_BEGIN_CDECL */ typedef struct Z_ext_typeent { -#if 0 - oid_value dref; /* the direct-reference OID value. */ -#else int oid[OID_SIZE]; /* the direct-reference OID */ -#endif int what; /* discriminator value for the external CHOICE */ Odr_fun fun; /* decoder function */ } Z_ext_typeent; @@ -144,9 +140,18 @@ struct Z_External YAZ_EXPORT int z_External(ODR o, Z_External **p, int opt, const char *name); /** \brief returns type information for OID (NULL if not known) */ YAZ_EXPORT Z_ext_typeent *z_ext_getentbyref(const int *oid); -/** \brief encodes EXTERNAL record based on OID (NULL if knot known) */ +/** \brief encodes EXTERNAL record based on OID (NULL if not known) */ YAZ_EXPORT Z_External *z_ext_record_oid(ODR o, const int *oid, const char *buf, int len); +/** \brief encodes EXTERNAL XML record */ +YAZ_EXPORT Z_External *z_ext_record_xml(ODR o, const char *buf, int len); + +/** \brief encodes EXTERNAL SUTRS record */ +YAZ_EXPORT Z_External *z_ext_record_sutrs(ODR o, const char *buf, int len); + +/** \brief encodes EXTERNAL USMARC/MARC21 record */ +YAZ_EXPORT Z_External *z_ext_record_usmarc(ODR o, const char *buf, int len); + YAZ_END_CDECL #endif