diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2017-09-17 23:30:37 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2017-09-18 01:13:30 +0200 |
commit | afeff9102c2935139de4efd40fd2286dce396706 (patch) | |
tree | 6eddd462cb8d14f3a40f63d1fa4c4f7ed8d4bd2a /xmlsecurity | |
parent | 164f6ba4e2501ef87639aa4d07699bbf58bdaac0 (diff) |
Use even more WIN32_LEAN_AND_MEAN
Change-Id: I538fe5b41156366e0e87b3a93e58a3947afd18f5
Reviewed-on: https://gerrit.libreoffice.org/42398
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'xmlsecurity')
5 files changed, 15 insertions, 0 deletions
diff --git a/xmlsecurity/source/xmlsec/mscrypt/akmngr.hxx b/xmlsecurity/source/xmlsec/mscrypt/akmngr.hxx index 174c127d3ad8..670c80928f0a 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/akmngr.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/akmngr.hxx @@ -19,6 +19,9 @@ #ifndef INCLUDED_XMLSECURITY_SOURCE_XMLSEC_MSCRYPT_AKMNGR_HXX #define INCLUDED_XMLSECURITY_SOURCE_XMLSEC_MSCRYPT_AKMNGR_HXX +#if !defined WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN +#endif #include <windows.h> #include <wincrypt.h> diff --git a/xmlsecurity/source/xmlsec/mscrypt/sanextension_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/sanextension_mscryptimpl.hxx index 795e08d1a7cf..9fb5f3b76b64 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/sanextension_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/sanextension_mscryptimpl.hxx @@ -23,6 +23,9 @@ #ifdef _MSC_VER #pragma warning(push,1) #endif +#if !defined WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN +#endif #include "Windows.h" #include "WinCrypt.h" #ifdef _MSC_VER diff --git a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx index 93296b1b4221..8df7520a9897 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx +++ b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx @@ -25,6 +25,9 @@ #ifdef _MSC_VER #pragma warning(push,1) #endif +#if !defined WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN +#endif #include "Windows.h" #include "WinCrypt.h" #ifdef _MSC_VER diff --git a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx index 4bed0b9005c5..5c29eb776cfa 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx @@ -23,6 +23,9 @@ #ifdef _MSC_VER #pragma warning(push,1) #endif +#if !defined WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN +#endif #include <windows.h> #include <wincrypt.h> #ifdef _MSC_VER diff --git a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx index ce63a8acc170..fbfd59a422a9 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx @@ -23,6 +23,9 @@ #ifdef _MSC_VER #pragma warning(push,1) #endif +#if !defined WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN +#endif #include "Windows.h" #include "WinCrypt.h" #ifdef _MSC_VER |