mirror of
https://github.com/moparisthebest/curl
synced 2024-11-16 06:25:03 -05:00
Possible code for large file support, added within #if 0 so far.
This commit is contained in:
parent
cc2d6942bb
commit
a10581d459
15
lib/setup.h
15
lib/setup.h
@ -193,6 +193,21 @@ typedef struct hostent Curl_addrinfo;
|
|||||||
typedef struct in_addr Curl_ipconnect;
|
typedef struct in_addr Curl_ipconnect;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
#if (SIZEOF_OFF_T > 4)
|
||||||
|
/* off_t is bigger than 4 bytes, and that makes it our prefered variable
|
||||||
|
type for filesizes */
|
||||||
|
typedef off_t filesize_t;
|
||||||
|
#else
|
||||||
|
#ifdef HAVE_LONGLONG
|
||||||
|
/* we have long long, use this for filesizes internally */
|
||||||
|
typedef long long filesize_t;
|
||||||
|
#else
|
||||||
|
/* small off_t and no long long, no support for large files :-( */
|
||||||
|
typedef long filesize_t;
|
||||||
|
#endif /* didn't have long long */
|
||||||
|
#endif /* sizeof wasn't bigger than 4 */
|
||||||
|
|
||||||
|
#endif /* 0 */
|
||||||
|
|
||||||
#endif /* __CONFIG_H */
|
#endif /* __CONFIG_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user