X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fprt-ext.c;h=84234ed8158cdb6fb1c5e038681f4d5750356296;hp=2cadf2ecab7b5b0bd425dec3cf4c7235e21af762;hb=d940392c53c32ccf76fb287cc5b997b9e921a431;hpb=79c2e0067287fd81143627819ee336fcff4a32ab diff --git a/src/prt-ext.c b/src/prt-ext.c index 2cadf2e..84234ed 100644 --- a/src/prt-ext.c +++ b/src/prt-ext.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2008 Index Data * See the file LICENSE for details. - * - * $Id: prt-ext.c,v 1.11 2007-04-25 13:49:52 adam Exp $ */ /** @@ -26,8 +24,8 @@ */ static Z_ext_typeent type_table[] = { - {{1, 2, 830, 10003, 5, 101,-1}, Z_External_sutrs, (Odr_fun) z_SUTRS}, - {{1, 2, 830, 10003, 5, 100,-1}, Z_External_explainRecord, (Odr_fun)z_ExplainRecord}, + {{1, 2, 840, 10003, 5, 101,-1}, Z_External_sutrs, (Odr_fun) z_SUTRS}, + {{1, 2, 840, 10003, 5, 100,-1}, Z_External_explainRecord, (Odr_fun)z_ExplainRecord}, {{1, 2, 840, 10003, 7, 1,-1}, Z_External_resourceReport1, (Odr_fun)z_ResourceReport1}, {{1, 2, 840, 10003, 7, 2,-1}, Z_External_resourceReport2, (Odr_fun)z_ResourceReport2}, {{1, 2, 840, 10003, 8, 1,-1}, Z_External_promptObject1, (Odr_fun)z_PromptObject1 }, @@ -56,7 +54,7 @@ static Z_ext_typeent type_table[] = {{-1}, 0, 0} }; -Z_ext_typeent *z_ext_getentbyref(const int *oid) +Z_ext_typeent *z_ext_getentbyref(const Odr_oid *oid) { Z_ext_typeent *p; @@ -239,12 +237,12 @@ int z_External(ODR o, Z_External **p, int opt, const char *name) odr_sequence_end(o); } -Z_External *z_ext_record_oid(ODR o, const int *oid, const char *buf, int len) +Z_External *z_ext_record_oid(ODR o, const Odr_oid *oid, const char *buf, int len) { Z_External *thisext; char oid_str_buf[OID_STR_MAX]; const char *oid_str; - int oclass; + oid_class oclass; if (!oid) return 0;