From: Daniel KouĊ™il Date: Thu, 24 Nov 2005 09:41:49 +0000 (+0000) Subject: Wrapped with '__cplusplus' to allow link with C++ objects X-Git-Tag: after_merge_from_branch_1_1_0_RC15~20 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=b3bfdd3b951d904faea6b960d92464d9bb2bd523;p=jra1mw.git Wrapped with '__cplusplus' to allow link with C++ objects --- diff --git a/org.glite.security.gsoap-plugin/interface/glite_gsplugin.h b/org.glite.security.gsoap-plugin/interface/glite_gsplugin.h index 1272a48..ba6e131 100644 --- a/org.glite.security.gsoap-plugin/interface/glite_gsplugin.h +++ b/org.glite.security.gsoap-plugin/interface/glite_gsplugin.h @@ -5,6 +5,10 @@ #include "glite_gss.h" +#ifdef __cplusplus +extern "C" { +#endif + #define PLUGIN_ID "GLITE_GSOAP_PLUGIN" struct _glite_gsplugin_ctx { @@ -34,4 +38,8 @@ extern void glite_gsplugin_set_timeout(glite_gsplugin_Context, struct timeval co extern int glite_gsplugin(struct soap *, struct soap_plugin *, void *); extern char *glite_gsplugin_errdesc(struct soap *); +#ifdef __cplusplus +} +#endif + #endif