diff options
author | marha <marha@users.sourceforge.net> | 2009-12-10 15:49:55 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-12-10 15:49:55 +0000 |
commit | 0925cb4f76a1667fb3777efbe6a0e0e69c4cca3c (patch) | |
tree | bbe20184d5104c1489cb84815f2f27dc4437be08 /tools/mhmake/src/md5.h | |
parent | 0540eb5a1f795c0f5265d244ec979b8ddfcf3acb (diff) | |
download | vcxsrv-0925cb4f76a1667fb3777efbe6a0e0e69c4cca3c.tar.gz vcxsrv-0925cb4f76a1667fb3777efbe6a0e0e69c4cca3c.tar.bz2 vcxsrv-0925cb4f76a1667fb3777efbe6a0e0e69c4cca3c.zip |
Added 64-bit compilation
Removed autodep optimisation.
Diffstat (limited to 'tools/mhmake/src/md5.h')
-rw-r--r-- | tools/mhmake/src/md5.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mhmake/src/md5.h b/tools/mhmake/src/md5.h index 5f604d460..d2e3ef62f 100644 --- a/tools/mhmake/src/md5.h +++ b/tools/mhmake/src/md5.h @@ -44,7 +44,7 @@ md5_context; typedef uint32 md5_val[4];
void md5_starts( md5_context *ctx );
-void md5_update( md5_context *ctx, uint8 *input, uint32 length );
+void md5_update( md5_context *ctx, uint8 *input, size_t length );
void md5_finish( md5_context *ctx, uint8 digest[16] );
uint32 *md5_finishbin( md5_context *ctx);
uint32 md5_finish32( md5_context *ctx);
|