if __cplusplus, wrap the extern variable (just to be safe) and

functions in extern "C" { }


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12217 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2003-05-06 13:01:06 +00:00
parent d80bf11dac
commit 57ff36e236
2 changed files with 18 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 1997 - 2002 Kungliga Tekniska H<>gskolan
* Copyright (c) 1997 - 2003 Kungliga Tekniska H<>gskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*
@@ -213,6 +213,10 @@ typedef OM_uint32 gss_qop_t;
*/
#define GSS_C_INDEFINITE 0xfffffffful
#ifdef __cplusplus
extern "C" {
#endif
/*
* The implementation must reserve static storage for a
* gss_OID_desc object containing the value
@@ -777,4 +781,8 @@ OM_uint32 gss_krb5_copy_ccache
OM_uint32
gss_krb5_compat_des3_mic(OM_uint32 *, gss_ctx_id_t, int);
#ifdef __cplusplus
}
#endif
#endif /* GSSAPI_H_ */