diff options
author | m0gg | 2006-03-06 13:37:38 +0000 |
---|---|---|
committer | m0gg | 2006-03-06 13:37:38 +0000 |
commit | 52767927889b305fe18b28ddfc5351f08b703d2d (patch) | |
tree | 6dbfd60ef92ec9781553ee8cc9c50a5359088b5f /libcsoap/soap-router.h | |
parent | 45e68a4a2394cf415b157b08a15a5cf8ac0df8f8 (diff) | |
download | csoap-52767927889b305fe18b28ddfc5351f08b703d2d.tar.gz csoap-52767927889b305fe18b28ddfc5351f08b703d2d.tar.bz2 |
Various changes see ChangeLog
Diffstat (limited to 'libcsoap/soap-router.h')
-rw-r--r-- | libcsoap/soap-router.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libcsoap/soap-router.h b/libcsoap/soap-router.h index 2a37117..41ea95f 100644 --- a/libcsoap/soap-router.h +++ b/libcsoap/soap-router.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: soap-router.h,v 1.5 2006/02/18 20:14:36 snowdrop Exp $ + * $Id: soap-router.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 @@ -38,6 +38,10 @@ typedef struct _SoapRouter } SoapRouter; +#ifdef __cplusplus +extern "C" { +#endif + /** Creates a new router object. Create a router if you are implementing a soap server. Then register @@ -87,4 +91,8 @@ SoapService *soap_router_find_service(SoapRouter * router, */ void soap_router_free(SoapRouter * router); +#ifdef __cplusplus +} +#endif + #endif |