- Introduced various new typedefs for windows platform (int32_t, int64_t, etc...)

- Applied md5 64-bit safety patch by Tony White.
This commit is contained in:
Thilo Schulz 2006-04-27 13:39:41 +00:00
parent c116695ea7
commit 235e2c215f
4 changed files with 40 additions and 53 deletions

View file

@ -109,10 +109,19 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
//=============================================================
#ifdef Q3_VM
typedef int intptr_t;
typedef int intptr_t;
#else
# ifndef _MSC_VER
# include <stdint.h>
# else
typedef __int64 int64_t;
typedef __int32 int32_t;
typedef __int16 int16_t;
typedef __int8 int8_t;
typedef unsigned __int64 uint64_t;
typedef unsigned __int32 uint32_t;
typedef unsigned __int16 uint16_t;
typedef unsigned __int8 uint8_t;
# endif
#endif