From 98aabbcf9ff19c8d33300ff966a45dc0163d4655 Mon Sep 17 00:00:00 2001 From: Victor Perevertkin Date: Tue, 26 Apr 2022 03:03:28 +0300 Subject: [PATCH] [SECUR32] Do not declare global variables in a header --- dll/win32/secur32/wine/ntlm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dll/win32/secur32/wine/ntlm.h b/dll/win32/secur32/wine/ntlm.h index 0006ad573aa..3338be52226 100644 --- a/dll/win32/secur32/wine/ntlm.h +++ b/dll/win32/secur32/wine/ntlm.h @@ -110,7 +110,7 @@ SECURITY_STATUS SEC_ENTRY ntlm_DeleteSecurityContext(PCtxtHandle) DECLSPEC_HIDDE SECURITY_STATUS SEC_ENTRY ntlm_MakeSignature(PCtxtHandle, ULONG, PSecBufferDesc, ULONG) DECLSPEC_HIDDEN; SECURITY_STATUS SEC_ENTRY ntlm_VerifySignature(PCtxtHandle, PSecBufferDesc, ULONG, PULONG) DECLSPEC_HIDDEN; -SecPkgInfoW *ntlm_package_infoW DECLSPEC_HIDDEN; -SecPkgInfoA *ntlm_package_infoA DECLSPEC_HIDDEN; +extern SecPkgInfoW *ntlm_package_infoW DECLSPEC_HIDDEN; +extern SecPkgInfoA *ntlm_package_infoA DECLSPEC_HIDDEN; #endif /* __WINE_NTLM_H__ */