Francois Gouget : secur32: Mark internal symbols with hidden visibility.
Module: wine Branch: master Commit: 1d7f2c318aadfd4bbc40b0e0189e736729e3544c URL: http://source.winehq.org/git/wine.git/?a=commit;h=1d7f2c318aadfd4bbc40b0e018... Author: Francois Gouget <fgouget(a)free.fr> Date: Tue Mar 31 21:06:16 2015 +0200 secur32: Mark internal symbols with hidden visibility. --- dlls/secur32/secur32_priv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/secur32/secur32_priv.h b/dlls/secur32/secur32_priv.h index ea1fcfb..9985cac 100644 --- a/dlls/secur32/secur32_priv.h +++ b/dlls/secur32/secur32_priv.h @@ -204,8 +204,8 @@ 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; -SecPkgInfoA *ntlm_package_infoA; +SecPkgInfoW *ntlm_package_infoW DECLSPEC_HIDDEN; +SecPkgInfoA *ntlm_package_infoA DECLSPEC_HIDDEN; /* schannel internal interface */ typedef struct schan_imp_session_opaque *schan_imp_session;
participants (1)
-
Alexandre Julliard