123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- #ifndef HEADER_CURL_CONFIG_WIN32CE_H
- #define HEADER_CURL_CONFIG_WIN32CE_H
- #define HAVE_FCNTL_H 1
- #define HAVE_IO_H 1
- #define NEED_MALLOC_H 1
- #define HAVE_SYS_STAT_H 1
- #define HAVE_SYS_UTIME_H 1
- #if defined(__MINGW32__) || defined(__LCC__)
- #define HAVE_UNISTD_H 1
- #endif
- #define HAVE_WINDOWS_H 1
- #define HAVE_WINSOCK2_H 1
- #define HAVE_WS2TCPIP_H 1
- #define STDC_HEADERS 1
- #define HAVE_CLOSESOCKET 1
- #define HAVE_GETHOSTNAME 1
- #define HAVE_IOCTLSOCKET 1
- #define HAVE_IOCTLSOCKET_FIONBIO 1
- #define HAVE_SELECT 1
- #define HAVE_SOCKET 1
- #if defined(__MINGW32__)
- #define HAVE_STRTOLL 1
- #endif
- #define HAVE_UTIME 1
- #define HAVE_RECV 1
- #define RECV_TYPE_ARG1 SOCKET
- #define RECV_TYPE_ARG2 char *
- #define RECV_TYPE_ARG3 int
- #define RECV_TYPE_ARG4 int
- #define RECV_TYPE_RETV int
- #define HAVE_SEND 1
- #define SEND_TYPE_ARG1 SOCKET
- #define SEND_QUAL_ARG2 const
- #define SEND_TYPE_ARG2 char *
- #define SEND_TYPE_ARG3 int
- #define SEND_TYPE_ARG4 int
- #define SEND_TYPE_RETV int
- #define in_addr_t unsigned long
- #if defined(__POCC__)
- #elif defined(_WIN64)
- #define ssize_t __int64
- #else
- #define ssize_t int
- #endif
- #define SIZEOF_INT 4
- #define SIZEOF_LONG 4
- #if defined(_WIN64)
- # define SIZEOF_SIZE_T 8
- #else
- # define SIZEOF_SIZE_T 4
- #endif
- #define HAVE_STRUCT_TIMEVAL 1
- #define HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID 1
- #if defined(_MSC_VER) && (_MSC_VER >= 1400)
- #define _CRT_SECURE_NO_DEPRECATE 1
- #define _CRT_NONSTDC_NO_DEPRECATE 1
- #endif
- #if defined(_MSC_VER) && (_MSC_VER >= 1400)
- # ifndef _USE_32BIT_TIME_T
- # define SIZEOF_TIME_T 8
- # else
- # define SIZEOF_TIME_T 4
- # endif
- #endif
- #if defined(_MSC_VER) && !defined(_WIN32_WCE)
- # if (_MSC_VER >= 900) && (_INTEGRAL_MAX_BITS >= 64)
- # define USE_WIN32_LARGE_FILES
- # else
- # define USE_WIN32_SMALL_FILES
- # endif
- #endif
- #if !defined(USE_WIN32_LARGE_FILES) && !defined(USE_WIN32_SMALL_FILES)
- # define USE_WIN32_SMALL_FILES
- #endif
- #define USE_WIN32_LDAP 1
- #undef HAVE_LDAP_URL_PARSE
- #ifndef OS
- #define OS "i386-pc-win32ce"
- #endif
- #define PACKAGE "curl"
- #ifndef UNICODE
- # define UNICODE
- #endif
- #ifndef _UNICODE
- # define _UNICODE
- #endif
- #define CURL_DISABLE_FILE 1
- #define CURL_DISABLE_TELNET 1
- #define CURL_DISABLE_LDAP 1
- #define ENOSPC 1
- #define ENOMEM 2
- #define EAGAIN 3
- extern int stat(const char *path, struct stat *buffer);
- #endif /* HEADER_CURL_CONFIG_WIN32CE_H */
|