From b6c6470e7e62f71a3a9b702bdecedd34fd22ecb4 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Tue, 1 Jun 2010 20:24:05 +0200 Subject: [PATCH] removed MSVC ifdef since seems we can use __int64 still with latest headers. --- include/libssh2.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/include/libssh2.h b/include/libssh2.h index 432588b8..1a664f33 100644 --- a/include/libssh2.h +++ b/include/libssh2.h @@ -76,13 +76,11 @@ typedef unsigned int uint32_t; #if defined(LIBSSH2_WIN32) && defined(_MSC_VER) typedef unsigned char uint8_t; typedef unsigned int uint32_t; +typedef unsigned __int64 libssh2_uint64_t; +typedef __int64 libssh2_int64_t; # ifndef _SSIZE_T_DEFINED typedef int ssize_t; # define _SSIZE_T_DEFINED -# if (_MSC_VER <= 1400) -typedef unsigned __int64 libssh2_uint64_t; -typedef __int64 libssh2_int64_t; -# endif #endif #else typedef unsigned long long libssh2_uint64_t;