diff options
Diffstat (limited to 'libcsoap/soap-ctx.h')
-rwxr-xr-x | libcsoap/soap-ctx.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libcsoap/soap-ctx.h b/libcsoap/soap-ctx.h index a4784f5..d418037 100755 --- a/libcsoap/soap-ctx.h +++ b/libcsoap/soap-ctx.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: soap-ctx.h,v 1.8 2006/02/18 20:14:36 snowdrop Exp $ + * $Id: soap-ctx.h,v 1.9 2006/03/06 13:37:38 m0gg Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2003-2004 Ferhat Ayaz @@ -42,6 +42,9 @@ typedef struct _SoapCtx attachments_t *attachments; } SoapCtx; +#ifdef __cplusplus +extern "C" { +#endif SoapCtx *soap_ctx_new(SoapEnv * env); /* should only be used internally */ @@ -71,4 +74,8 @@ given one to the added part. void soap_ctx_add_files(SoapCtx * ctx, attachments_t * attachments); void soap_ctx_free(SoapCtx * ctx); +#ifdef __cplusplus +} +#endif + #endif |