From b838d65a7212eabdd67badff7f0462fa01b15dfc Mon Sep 17 00:00:00 2001 From: John Safranek Date: Wed, 12 Oct 2022 15:30:52 -0700 Subject: [PATCH] wincrypt.h requires windows.h, which isn't included in internal.h when WOLFCRYPT_ONLY set --- src/ssl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ssl.c b/src/ssl.c index cf30c5baa..2ba19ff7e 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -163,6 +163,7 @@ #endif /* !WOLFCRYPT_ONLY || OPENSSL_EXTRA */ #ifdef _WIN32 +#include #include #pragma comment(lib, "crypt32") #endif