summaryrefslogtreecommitdiff
path: root/xmlsecurity/inc/xsecfwdllapi.h
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-11-24 08:24:29 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-11-24 14:22:45 +0000
commit9691cea443a74885b3f81c602efdd3345de1e3f9 (patch)
tree8a8c1e797065df453c5189281f320290386a1645 /xmlsecurity/inc/xsecfwdllapi.h
parent6eaa7a41d8ca4dd38d285799fd1920c3115f89c7 (diff)
xmlsecurity: instantiate SignatureVerifierImpl directly in XSecController
Going via UNO for a class in the same module sounds like an overkill. Change-Id: Iaa5b31d1b888c8d3f1c9b47ee787504191ce3d7d Reviewed-on: https://gerrit.libreoffice.org/31148 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'xmlsecurity/inc/xsecfwdllapi.h')
-rw-r--r--xmlsecurity/inc/xsecfwdllapi.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/xmlsecurity/inc/xsecfwdllapi.h b/xmlsecurity/inc/xsecfwdllapi.h
new file mode 100644
index 000000000000..d6cee81fd1b5
--- /dev/null
+++ b/xmlsecurity/inc/xsecfwdllapi.h
@@ -0,0 +1,23 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#ifndef INCLUDED_XMLSECURITY_INC_XSECFWDLLAPI_H
+#define INCLUDED_XMLSECURITY_INC_XSECFWDLLAPI_H
+
+#include <sal/types.h>
+
+#if defined(XSECFW_DLLIMPLEMENTATION)
+#define XSECFW_DLLPUBLIC SAL_DLLPUBLIC_EXPORT
+#else
+#define XSECFW_DLLPUBLIC SAL_DLLPUBLIC_IMPORT
+#endif
+
+#endif // INCLUDED_XMLSECURITY_INC_XSECFWDLLAPI_H
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */