diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-11-09 21:18:00 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-11-09 21:27:25 +0200 |
commit | db877a15d98b0ea6875d8150ce43bf7fa82610bf (patch) | |
tree | d93fa938672b4e9376e3661a73ab4c1461c15343 | |
parent | bf64b4f1451896810b66fd6edf6175f0dd46ac44 (diff) |
These functions don't even need to be XMLSECURITY_DLLPUBLIC
Change-Id: I8f2963c9b6b1c8717ea4d19453815fffa6e68484
-rw-r--r-- | xmlsecurity/inc/documentsignaturehelper.hxx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/xmlsecurity/inc/documentsignaturehelper.hxx b/xmlsecurity/inc/documentsignaturehelper.hxx index 8aa01241db15..50c8d436436d 100644 --- a/xmlsecurity/inc/documentsignaturehelper.hxx +++ b/xmlsecurity/inc/documentsignaturehelper.hxx @@ -65,33 +65,33 @@ struct SignatureStreamHelper namespace DocumentSignatureHelper { - SignatureStreamHelper XMLSECURITY_DLLPUBLIC OpenSignatureStream( + SignatureStreamHelper OpenSignatureStream( const css::uno::Reference < css::embed::XStorage >& rxStore, sal_Int32 nOpenMode, DocumentSignatureMode eDocSigMode ); - std::vector< OUString > XMLSECURITY_DLLPUBLIC CreateElementList( + std::vector< OUString > CreateElementList( const css::uno::Reference < css::embed::XStorage >& rxStore, DocumentSignatureMode eMode, const DocumentSignatureAlgorithm mode); - bool XMLSECURITY_DLLPUBLIC isODFPre_1_2(const OUString & sODFVersion); - bool XMLSECURITY_DLLPUBLIC isOOo3_2_Signature(const SignatureInformation & sigInfo); + bool isODFPre_1_2(const OUString & sODFVersion); + bool isOOo3_2_Signature(const SignatureInformation & sigInfo); - DocumentSignatureAlgorithm XMLSECURITY_DLLPUBLIC getDocumentAlgorithm( + DocumentSignatureAlgorithm getDocumentAlgorithm( const OUString & sODFVersion, const SignatureInformation & sigInfo); - bool XMLSECURITY_DLLPUBLIC checkIfAllFilesAreSigned( const ::std::vector< OUString > & sElementList, + bool checkIfAllFilesAreSigned( const ::std::vector< OUString > & sElementList, const SignatureInformation & sigInfo, const DocumentSignatureAlgorithm alg); - bool XMLSECURITY_DLLPUBLIC equalsReferenceUriManifestPath( + bool equalsReferenceUriManifestPath( const OUString & rUri, const OUString & rPath); - OUString XMLSECURITY_DLLPUBLIC GetDocumentContentSignatureDefaultStreamName(); - OUString XMLSECURITY_DLLPUBLIC GetScriptingContentSignatureDefaultStreamName(); - OUString XMLSECURITY_DLLPUBLIC GetPackageSignatureDefaultStreamName(); + OUString GetDocumentContentSignatureDefaultStreamName(); + OUString GetScriptingContentSignatureDefaultStreamName(); + OUString GetPackageSignatureDefaultStreamName(); /// In case the storage is OOXML, prepend a leading '/' and append content type to the element URIs. - void XMLSECURITY_DLLPUBLIC AppendContentTypes(const css::uno::Reference<css::embed::XStorage>& xStorage, std::vector<OUString>& rElements); + void AppendContentTypes(const css::uno::Reference<css::embed::XStorage>& xStorage, std::vector<OUString>& rElements); }; #endif // INCLUDED_XMLSECURITY_INC_DOCUMENTSIGNATUREHELPER_HXX |