Note incorrect ID-private OID for VAL_ADMINSERVICE
[yaz-moved-to-github.git] / zutil / zoom-p.h
index f62d940..0e136ee 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Private C header for ZOOM C.
- * $Id: zoom-p.h,v 1.4 2003-02-14 18:49:24 adam Exp $
+ * $Id: zoom-p.h,v 1.10 2003-07-14 12:59:23 adam Exp $
  */
 
 #if HAVE_XSLT
@@ -19,6 +19,7 @@ struct ZOOM_query_p {
     Z_SortKeySpecList *sort_spec;
     int refcount;
     ODR odr;
+    char *query_string;
 };
 
 #define STATE_IDLE 0
@@ -62,7 +63,6 @@ struct ZOOM_connection_p {
     ZOOM_Event m_queue_back;
 };
 
-
 struct ZOOM_options_entry {
     char *name;
     char *value;
@@ -81,15 +81,16 @@ struct ZOOM_options_p {
 typedef struct ZOOM_record_cache_p *ZOOM_record_cache;
 
 struct ZOOM_resultset_p {
-    Z_Query *z_query;
     Z_SortKeySpecList *r_sort_spec;
-    ZOOM_query search;
+    ZOOM_query query;
     int refcount;
     int size;
     int start;
     int count;
+    int step;
     int piggyback;
     char *setname;
+    char *schema;
     ODR odr;
     ZOOM_record_cache record_cache;
     ZOOM_options options;
@@ -100,6 +101,8 @@ struct ZOOM_resultset_p {
 struct ZOOM_record_p {
     ODR odr;
     WRBUF wrbuf_marc;
+    WRBUF wrbuf_iconv;
+    WRBUF wrbuf_opac;
     Z_NamePlusRecord *npr;
 };
 
@@ -107,6 +110,7 @@ struct ZOOM_record_cache_p {
     struct ZOOM_record_p rec;
     char *elementSetName;
     char *syntax;
+    char *schema;
     int pos;
     ZOOM_record_cache next;
 };