[PATCH] secur32: Mark internal symbols with hidden visibility

Marcus Meissner marcus at jet.franken.de
Sat Jan 26 08:56:01 CST 2013


From: Marcus Meissner <meissner at suse.de>

---
 dlls/secur32/hmac_md5.h |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/secur32/hmac_md5.h b/dlls/secur32/hmac_md5.h
index 2bb46dc..6996505 100644
--- a/dlls/secur32/hmac_md5.h
+++ b/dlls/secur32/hmac_md5.h
@@ -38,9 +38,9 @@ typedef struct
     unsigned char outer_padding[64];
 } HMAC_MD5_CTX;
 
-void WINAPI MD5Init( MD5_CTX *ctx );
-void WINAPI MD5Update( MD5_CTX *ctx, const unsigned char *buf, unsigned int len );
-void WINAPI MD5Final( MD5_CTX *ctx );
+void WINAPI MD5Init( MD5_CTX *ctx ) DECLSPEC_HIDDEN;
+void WINAPI MD5Update( MD5_CTX *ctx, const unsigned char *buf, unsigned int len ) DECLSPEC_HIDDEN;
+void WINAPI MD5Final( MD5_CTX *ctx ) DECLSPEC_HIDDEN;
 
 void HMACMD5Init(HMAC_MD5_CTX *ctx, const unsigned char *key, unsigned int key_len) DECLSPEC_HIDDEN;
 void HMACMD5Update(HMAC_MD5_CTX *ctx, const unsigned char *data, unsigned int data_len) DECLSPEC_HIDDEN;
-- 
1.7.10.4




More information about the wine-patches mailing list