Added Update extended service.
[yaz-moved-to-github.git] / asn / prt-ext.c
index 27d8db9..0a3bc39 100644 (file)
@@ -4,7 +4,16 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: prt-ext.c,v $
- * Revision 1.8  1996-02-20 12:51:44  quinn
+ * Revision 1.11  1996-10-10 12:35:13  quinn
+ * Added Update extended service.
+ *
+ * Revision 1.10  1996/10/09  15:54:55  quinn
+ * Added SearchInfoReport
+ *
+ * Revision 1.9  1996/06/10  08:53:36  quinn
+ * Added Summary,OPAC,ResourceReport
+ *
+ * Revision 1.8  1996/02/20  12:51:44  quinn
  * Completed SCAN. Fixed problems with EXTERNAL.
  *
  * Revision 1.7  1995/10/12  10:34:38  quinn
@@ -50,6 +59,10 @@ static Z_ext_typeent type_table[] =
     {VAL_ITEMORDER, Z_External_itemOrder, z_ItemOrder},
     {VAL_DIAG1, Z_External_diag1, z_DiagnosticFormat},
     {VAL_ESPEC1, Z_External_espec1, z_Espec1},
+    {VAL_SUMMARY, Z_External_summary, z_BriefBib},
+    {VAL_OPAC, Z_External_OPAC, z_OPACRecord},
+    {VAL_SEARCHRES1, Z_External_searchResult1, z_SearchInfoReport},
+    {VAL_DBUPDATE, Z_External_update, z_IUUpdate},
     {VAL_NONE, 0, 0}
 };
 
@@ -89,6 +102,11 @@ int z_External(ODR o, Z_External **p, int opt)
        {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_itemOrder, z_ItemOrder},
        {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_diag1, z_DiagnosticFormat},
        {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_espec1, z_Espec1},
+       {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_summary, z_BriefBib},
+       {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_OPAC, z_OPACRecord},
+       {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_searchResult1,
+           z_SearchInfoReport},
+       {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_update},
        {-1, -1, -1, -1, 0}
     };