Kai Blin : secur32: MD5 functions are WINAPI.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Nov 9 06:08:37 CST 2006


Module: wine
Branch: master
Commit: 78bcfdfce691caafbfb8a1bcadaeb72f6b4ad7c2
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=78bcfdfce691caafbfb8a1bcadaeb72f6b4ad7c2

Author: Kai Blin <kai.blin at gmail.com>
Date:   Wed Nov  8 21:52:05 2006 +0100

secur32: MD5 functions are WINAPI.

---

 dlls/secur32/hmac_md5.h |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/dlls/secur32/hmac_md5.h b/dlls/secur32/hmac_md5.h
index 29e3a33..3a94bb0 100644
--- a/dlls/secur32/hmac_md5.h
+++ b/dlls/secur32/hmac_md5.h
@@ -22,6 +22,7 @@ #ifndef _HMAC_MD5_H_
 #define _HMAC_MD5_H_
 
 #include <string.h>
+#include "windef.h"
 
 typedef struct
 {
@@ -37,9 +38,9 @@ typedef struct
     unsigned char outer_padding[64];
 } HMAC_MD5_CTX;
 
-void MD5Init( MD5_CTX *ctx );
-void MD5Update( MD5_CTX *ctx, const unsigned char *buf, unsigned int len );
-void MD5Final( MD5_CTX *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 HMACMD5Init(HMAC_MD5_CTX *ctx, unsigned char *key, unsigned int key_len);
 void HMACMD5Update(HMAC_MD5_CTX *ctx, unsigned char *data, unsigned int data_len);




More information about the wine-cvs mailing list