X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Foid.h;h=a465b750b2551f7296a447004336a88c92599b98;hb=20c20b95722fee18675cb36d9474612a2251853a;hp=8feb61c135a80d42f69fb2f0523afb2fe8d4ba73;hpb=4ae699c927bc26f3550d1a8ca911e8d1fe75dbfc;p=yaz-moved-to-github.git diff --git a/include/oid.h b/include/oid.h index 8feb61c..a465b75 100644 --- a/include/oid.h +++ b/include/oid.h @@ -24,7 +24,13 @@ * OF THIS SOFTWARE. * * $Log: oid.h,v $ - * Revision 1.11 1996-01-02 08:57:30 quinn + * Revision 1.13 1996-02-20 17:57:53 adam + * Added const to oid_getvalbyname. + * + * Revision 1.12 1996/02/20 12:52:37 quinn + * Various + * + * Revision 1.11 1996/01/02 08:57:30 quinn * Changed enums in the ASN.1 .h files to #defines. Changed oident.class to oclass * * Revision 1.10 1995/11/13 09:27:31 quinn @@ -74,7 +80,8 @@ typedef enum oid_proto { PROTO_Z3950, PROTO_SR, - PROTO_GENERAL + PROTO_GENERAL, + PROTO_WAIS } oid_proto; typedef enum oid_class @@ -165,6 +172,6 @@ void oid_oidcpy(int *t, int *s); void oid_oidcat(int *t, int *s); int oid_oidcmp(int *o1, int *o2); int oid_oidlen(int *o); -oid_value oid_getvalbyname(char *name); +oid_value oid_getvalbyname(const char *name); #endif