Changed ZOOM_query_ccl2rpn function so that it takes a CCL config
[yaz-moved-to-github.git] / include / yaz / soap.h
index 79264f6..c920874 100644 (file)
@@ -1,8 +1,12 @@
 /*
- * Copyright (c) 2002-2003, Index Data.
+ * Copyright (C) 1995-2005, Index Data ApS
  * See the file LICENSE for details.
  *
- * $Id: soap.h,v 1.4 2003-03-24 22:26:50 adam Exp $
+ * $Id: soap.h,v 1.10 2005-06-25 15:46:03 adam Exp $
+ */
+/**
+ * \file soap.h
+ * \brief Header for SOAP
  */
 
 #ifndef YAZ_SOAP_H
@@ -10,6 +14,8 @@
 
 #include <yaz/odr.h>
 
+YAZ_BEGIN_CDECL
+
 typedef struct {
     char *fault_code;
     char *fault_string;
@@ -36,7 +42,7 @@ typedef struct {
 } Z_SOAP;
 
 typedef int (*Z_SOAP_fun)(ODR o, void * ptr, void **handler_data,
-                        void *client_data, const char *ns);
+                         void *client_data, const char *ns);
 typedef struct {
     char *ns;
     void *client_data;
@@ -47,11 +53,26 @@ YAZ_EXPORT int z_soap_codec(ODR o, Z_SOAP **pp,
                             char **content_buf, int *content_len,
                             Z_SOAP_Handler *handlers);
 YAZ_EXPORT int z_soap_codec_enc(ODR o, Z_SOAP **pp, 
-                            char **content_buf, int *content_len,
-                            Z_SOAP_Handler *handlers, const char *encoding);
+                                char **content_buf, int *content_len,
+                                Z_SOAP_Handler *handlers,
+                                const char *encoding);
+YAZ_EXPORT int z_soap_codec_enc_xsl(ODR o, Z_SOAP **pp, 
+                                    char **content_buf, int *content_len,
+                                    Z_SOAP_Handler *handlers,
+                                    const char *encoding,
+                                    const char *stylesheet);
 
 YAZ_EXPORT int z_soap_error(ODR o, Z_SOAP *p,
                             const char *fault_code, const char *fault_string,
                             const char *details);
 
+YAZ_END_CDECL
 #endif
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+