diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2004-04-19 16:51:04 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2004-04-19 16:51:04 +0000 |
| commit | 40e7480327daae7fb3da0fe0c354cf010b4affcc (patch) | |
| tree | c703c3a24bd426fa6cf36274350def486822b700 | |
| parent | 8dff393969fa08a7db967b9c35ffbf138a683999 (diff) | |
| download | lasso-40e7480327daae7fb3da0fe0c354cf010b4affcc.tar.gz lasso-40e7480327daae7fb3da0fe0c354cf010b4affcc.tar.xz lasso-40e7480327daae7fb3da0fe0c354cf010b4affcc.zip | |
fix = add support of cplusplus
| -rw-r--r-- | lasso/Attic/protocols/logout.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lasso/Attic/protocols/logout.h b/lasso/Attic/protocols/logout.h index 5e7dc1f7..a2b59c07 100644 --- a/lasso/Attic/protocols/logout.h +++ b/lasso/Attic/protocols/logout.h @@ -26,6 +26,10 @@ #ifndef __LOGOUT_H__ #define __LOGOUT_H__ +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + #include <lasso/protocols/protocols.h> typedef struct _lassoLogoutRequest lassoLogoutRequest; @@ -64,4 +68,8 @@ lasso_logout_response_init(lassoLogoutResponse *lares, const xmlChar *statusCodeValue, const xmlChar *relayState); +#ifdef __cplusplus +} +#endif /* __cplusplus */ + #endif /* __LOGOUT_H__ */ |
