From 595241e17f16bc77e08bee4fe82aaa2e840bc82b Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 21 Nov 2001 13:26:57 +0000 Subject: [PATCH] inttypes.h apparently doesn't exist with VC++. Therefore, use the built-in types __int8, __int16 and so on on that platform. --- crypto/engine/vendor_defns/aep.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/crypto/engine/vendor_defns/aep.h b/crypto/engine/vendor_defns/aep.h index 55dacccffb..09bcc87fed 100644 --- a/crypto/engine/vendor_defns/aep.h +++ b/crypto/engine/vendor_defns/aep.h @@ -9,7 +9,14 @@ * */ +#ifdef WIN32 +typedef unsigned __int8 uint8_t; +typedef unsigned __int16 uint16_t; +typedef unsigned __int32 uint32_t; +typedef unsigned __int64 uint64_t; +#else #include +#endif /*Successful return value*/ #define AEP_R_OK 0x00000000 -- 2.40.0