diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-05-03 22:18:25 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-05-04 17:14:28 +0200 |
commit | 53a0298667172bfdab22fd969f2bb319a59938e4 (patch) | |
tree | ee9200647f9c600beb47ccbf461a1367cce43081 /xmlsecurity/source/xmlsec/mscrypt/akmngr.hxx | |
parent | e51e0279e88dbb542518df93d86f8bb0d0a43e89 (diff) |
xmlsecurity windows: stop using the "xmlSec" prefix for own code
xmlSec is the prefix for symbols from libxmlsec, it's confusing if our own code
uses that as well.
Change-Id: I3b003d2de067ba85e9f092c3c6aeac00dd4b1784
Reviewed-on: https://gerrit.libreoffice.org/53820
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'xmlsecurity/source/xmlsec/mscrypt/akmngr.hxx')
-rw-r--r-- | xmlsecurity/source/xmlsec/mscrypt/akmngr.hxx | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/xmlsecurity/source/xmlsec/mscrypt/akmngr.hxx b/xmlsecurity/source/xmlsec/mscrypt/akmngr.hxx index 670c80928f0a..04b94244bb01 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/akmngr.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/akmngr.hxx @@ -29,26 +29,31 @@ #include <xmlsec/keys.h> #include <xmlsec/transforms.h> -xmlSecKeysMngrPtr xmlSecMSCryptoAppliedKeysMngrCreate(); +namespace xmlsecurity +{ + +xmlSecKeysMngrPtr MSCryptoAppliedKeysMngrCreate(); int -xmlSecMSCryptoAppliedKeysMngrAdoptKeyStore( +MSCryptoAppliedKeysMngrAdoptKeyStore( xmlSecKeysMngrPtr mngr, HCERTSTORE keyStore ) ; int -xmlSecMSCryptoAppliedKeysMngrAdoptTrustedStore( +MSCryptoAppliedKeysMngrAdoptTrustedStore( xmlSecKeysMngrPtr mngr, HCERTSTORE trustedStore ) ; int -xmlSecMSCryptoAppliedKeysMngrAdoptUntrustedStore( +MSCryptoAppliedKeysMngrAdoptUntrustedStore( xmlSecKeysMngrPtr mngr, HCERTSTORE untrustedStore ) ; +} + #endif // INCLUDED_XMLSECURITY_SOURCE_XMLSEC_MSCRYPT_AKMNGR_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |