https://git.reactos.org/?p=reactos.git;a=commitdiff;h=98aabbcf9ff19c8d33300…
commit 98aabbcf9ff19c8d33300ff966a45dc0163d4655
Author: Victor Perevertkin <victor.perevertkin(a)reactos.org>
AuthorDate: Tue Apr 26 03:03:28 2022 +0300
Commit: Victor Perevertkin <victor.perevertkin(a)reactos.org>
CommitDate: Tue Apr 26 03:38:38 2022 +0300
[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__ */