summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-service.h
diff options
context:
space:
mode:
authorGravatar m0gg2006-03-06 13:37:38 +0000
committerGravatar m0gg2006-03-06 13:37:38 +0000
commit52767927889b305fe18b28ddfc5351f08b703d2d (patch)
tree6dbfd60ef92ec9781553ee8cc9c50a5359088b5f /libcsoap/soap-service.h
parent45e68a4a2394cf415b157b08a15a5cf8ac0df8f8 (diff)
downloadcsoap-52767927889b305fe18b28ddfc5351f08b703d2d.tar.gz
csoap-52767927889b305fe18b28ddfc5351f08b703d2d.tar.bz2
Various changes see ChangeLog
Diffstat (limited to 'libcsoap/soap-service.h')
-rw-r--r--libcsoap/soap-service.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/libcsoap/soap-service.h b/libcsoap/soap-service.h
index 798f842..594b994 100644
--- a/libcsoap/soap-service.h
+++ b/libcsoap/soap-service.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: soap-service.h,v 1.5 2006/01/10 11:29:04 snowdrop Exp $
+ * $Id: soap-service.h,v 1.6 2006/03/06 13:37:38 m0gg Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -24,7 +24,6 @@
#ifndef cSOAP_SERVICE_H
#define cSOAP_SERVICE_H
-
#include <libcsoap/soap-env.h>
#include <libcsoap/soap-ctx.h>
@@ -45,13 +44,20 @@ typedef struct _SoapServiceNode
struct _SoapServiceNode *next;
} SoapServiceNode;
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
SoapServiceNode *soap_service_node_new(SoapService * service,
SoapServiceNode * next);
-SoapService *soap_service_new(const char *urn, const char *method,
- SoapServiceFunc f);
-void soap_service_free(SoapService * service);
+SoapService *soap_service_new(const char *urn, const char *method, SoapServiceFunc f);
+void soap_service_free(SoapService * service);
+#ifdef __cplusplus
+}
+#endif
#endif