diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-07-17 15:44:15 -0400 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-07-17 15:46:24 -0400 |
commit | 16c238e4b92fc20a8a49e2a6713366fd3cfafad8 (patch) | |
tree | 633beb9295b25dfca6b7b53f07842eb366d32cb6 /src/core/hle | |
parent | e0fb1d3d172d4372a1216e939b3cac941782b09e (diff) |
ssl: Link with crypt32 for secure channel backend
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/ssl/ssl_backend_schannel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/ssl/ssl_backend_schannel.cpp b/src/core/hle/service/ssl/ssl_backend_schannel.cpp index 368735d8c..d8074339a 100644 --- a/src/core/hle/service/ssl/ssl_backend_schannel.cpp +++ b/src/core/hle/service/ssl/ssl_backend_schannel.cpp @@ -20,6 +20,7 @@ namespace { #define SECURITY_WIN32 #include <schnlsp.h> #include <security.h> +#include <wincrypt.h> std::once_flag one_time_init_flag; bool one_time_init_success = false; |