mirror of
https://github.com/libssh2/libssh2.git
synced 2025-08-07 08:02:56 +03:00
added two more typedefs but blocked them so they are only used with MSVC6 or lower (dont know if later MSVC versions still need them).
This commit is contained in:
@@ -66,6 +66,10 @@ extern "C" {
|
|||||||
#if defined(LIBSSH2_WIN32) && defined(_MSC_VER) && (_MSC_VER < 1300)
|
#if defined(LIBSSH2_WIN32) && defined(_MSC_VER) && (_MSC_VER < 1300)
|
||||||
typedef unsigned __int64 libssh2_uint64_t;
|
typedef unsigned __int64 libssh2_uint64_t;
|
||||||
typedef __int64 libssh2_int64_t;
|
typedef __int64 libssh2_int64_t;
|
||||||
|
#if (_MSC_VER <= 1200)
|
||||||
|
typedef long ssize_t;
|
||||||
|
typedef unsigned int uint32_t;
|
||||||
|
#endif
|
||||||
#else
|
#else
|
||||||
typedef unsigned long long libssh2_uint64_t;
|
typedef unsigned long long libssh2_uint64_t;
|
||||||
typedef long long libssh2_int64_t;
|
typedef long long libssh2_int64_t;
|
||||||
|
Reference in New Issue
Block a user