summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Cecchetti <marco.cecchetti@collabora.com>2015-09-01 10:27:47 +0200
committerMichael Meeks <michael.meeks@collabora.com>2015-09-01 16:28:51 +0100
commit80eb87f3c9a8e650070f85cfbc796422ae6840a5 (patch)
tree00449d9017c68ee503cbf2952419cfc23aa0a66a
parent2d215ceccfb6476550ea389e19ab4c84b685ce97 (diff)
Changed DLL macro for fixing warning C4273 on Windows
Change-Id: I50e4b30e0932f092db9e7d60e50f88f2b7e83895
-rw-r--r--include/vcl/checksum.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/checksum.hxx b/include/vcl/checksum.hxx
index 6efb4acf83f2..8b149546d662 100644
--- a/include/vcl/checksum.hxx
+++ b/include/vcl/checksum.hxx
@@ -22,9 +22,9 @@
#define INCLUDED_VCL_INC_CHECKSUM_HXX
#include <sal/config.h>
-#include <sal/saldllapi.h>
#include <sal/types.h>
#include <tools/solar.h>
+#include <vcl/dllapi.h>
#include <boost/preprocessor/arithmetic/inc.hpp>
#include <boost/preprocessor/arithmetic/mul.hpp>
@@ -158,7 +158,7 @@ extern "C" {
@param DatLen [in] data buffer length.
@return new CRC64 value.
*/
-SAL_DLLPUBLIC sal_uInt64 SAL_CALL vcl_crc64 (
+VCL_DLLPUBLIC sal_uInt64 SAL_CALL vcl_crc64 (
sal_uInt64 Crc,
const void *Data, sal_uInt32 DatLen
) SAL_THROW_EXTERN_C();