From: Sebastian Hammer Date: Tue, 27 Jun 1995 13:20:32 +0000 (+0000) Subject: Added SUTRS support X-Git-Tag: YAZ.1.8~948 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=6d7038a051e53896c8447bec79279353a3ab57ef Added SUTRS support --- diff --git a/include/backend.h b/include/backend.h index 392f68b..da2ee29 100644 --- a/include/backend.h +++ b/include/backend.h @@ -69,6 +69,7 @@ typedef struct bend_fetchrequest { char *setname; /* set name */ int number; /* record number */ + oid_value format; /* One of the CLASS_RECSYN members */ } bend_fetchrequest; typedef struct bend_fetchresult @@ -77,6 +78,7 @@ typedef struct bend_fetchresult int len; /* length of record */ char *record; /* record */ int last_in_set; /* is it? */ + oid_value format; /* format */ int errcode; /* 0==success */ char *errstring; /* system error string or NULL */ } bend_fetchresult; diff --git a/include/oid.h b/include/oid.h index af5a0c9..b900b9f 100644 --- a/include/oid.h +++ b/include/oid.h @@ -24,7 +24,10 @@ * OF THIS SOFTWARE. * * $Log: oid.h,v $ - * Revision 1.3 1995-05-29 08:11:33 quinn + * Revision 1.4 1995-06-27 13:20:32 quinn + * Added SUTRS support + * + * Revision 1.3 1995/05/29 08:11:33 quinn * Moved oid from odr/asn to util. * * Revision 1.2 1995/05/16 08:50:35 quinn @@ -115,7 +118,8 @@ typedef struct oident VAL_ITEMORDER, VAL_DBUPDATE, VAL_EXPORTSPEC, - VAL_EXPORTINV + VAL_EXPORTINV, + VAL_NONE } value; int oidsuffix[20]; char *desc;