curl-library
Re: 64/32/16bit curl_off_t for _WIN32_WCE and ILEC400
From: Yang Tse <yangsita_at_gmail.com>
Date: Thu, 5 Jun 2008 18:29:17 +0200
Date: Thu, 5 Jun 2008 18:29:17 +0200
My current local copy definitions block for these compiler/system looks like:
#elif defined(_WIN32_WCE)
typedef signed __int64 curl_off_t;
#define CURL_FORMAT_OFF_T "%I64d"
#define CURL_SIZEOF_CURL_OFF_T 8
#elif defined(__OS400__)
#if defined(__ILEC400__)
typedef long long curl_off_t;
#define CURL_FORMAT_OFF_T "%lld"
#define CURL_SIZEOF_CURL_OFF_T 8
#endif
-- -=[Yang]=-Received on 2008-06-05