Skip to content

Commit b533d08

Browse files
authored
Merge pull request #8678 from embhorn/zd19742
Fix types.h for MSVC6.0
2 parents ce67d8c + f7ca823 commit b533d08

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

wolfssl/wolfcrypt/types.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,8 @@ decouple library dependencies with standard string, memory and so on.
252252
#endif
253253
#endif
254254

255-
#if (defined(_MSC_VER) && !defined(WOLFSSL_NOT_WINDOWS_API)) || \
255+
#if (defined(_MSC_VER) && (_MSC_VER == 1200)) || /* MSVC6 */ \
256+
(defined(_MSC_VER) && !defined(WOLFSSL_NOT_WINDOWS_API)) || \
256257
defined(__BCPLUSPLUS__) || \
257258
(defined(__WATCOMC__) && defined(__WATCOM_INT64__))
258259
/* windows types */

0 commit comments

Comments
 (0)