wincrypt: Fixed cross-compilation issues caused by include name

For some reason WinCrypt.h is named wincrypt.h under MinGW.
This commit is contained in:
Marc Hoersken 2012-09-11 14:35:18 +02:00
parent 4d384a8714
commit 7f7e2ea72f
2 changed files with 2 additions and 2 deletions

View file

@ -86,7 +86,7 @@ static void MD5_Final(unsigned char digest[16], MD5_CTX * ctx)
#elif defined(_WIN32)
#include <WinCrypt.h>
#include <wincrypt.h>
typedef struct {
HCRYPTPROV hCryptProv;