1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2026-01-03 17:13:16 +00:00

Fixed preprocessor, so compiled correctly if OpenSSL is not linked

This commit is contained in:
Bryan Roe
2019-01-11 16:13:44 -08:00
parent 08eb5509aa
commit 2759cc799e
3 changed files with 6 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ limitations under the License.
// When compiled in 32bit, this module uses Windows CAPI which is compatible with Windows XP.
// When compiled in 64bit, this module uses Windows CNG (Crypto Next Gen) that is compatible and will use TPM modules.
#if !defined(_NOCAPI) && defined(WIN32)
#if !defined(_NOCAPI) && defined(WIN32) && !defined(MICROSTACK_NOTLS)
#include <windows.h>
#include <stdio.h>