X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz%2Fsoap.h;h=bdbb0981d8625f4b2ae26071f47d469455c68d31;hb=a834d92665e792c011e86d5603968ab31237575a;hp=9c60462bedf18d9572918749f39f7c4d1f2748ac;hpb=c620a713f1418315efcd4e6fab225e036775d365;p=yaz-moved-to-github.git diff --git a/include/yaz/soap.h b/include/yaz/soap.h index 9c60462..bdbb098 100644 --- a/include/yaz/soap.h +++ b/include/yaz/soap.h @@ -2,7 +2,7 @@ * Copyright (c) 2002-2003, Index Data. * See the file LICENSE for details. * - * $Id: soap.h,v 1.1 2003-02-12 15:06:43 adam Exp $ + * $Id: soap.h,v 1.3 2003-03-11 11:09:17 adam Exp $ */ #ifndef YAZ_SOAP_H @@ -10,11 +10,6 @@ #include -#if HAVE_XSLT -#include -#include -#endif - typedef struct { char *fault_code; char *fault_string; @@ -40,15 +35,19 @@ typedef struct { const char *ns; } Z_SOAP; +typedef int (*Z_SOAP_fun)(ODR o, void * ptr, void **handler_data, + void *client_data, const char *ns); typedef struct { char *ns; void *client_data; - int (*f)(ODR o, xmlNodePtr ptr, void **handler_data, - void *client_data, const char *ns); + Z_SOAP_fun f; } Z_SOAP_Handler; 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); #endif