1999-12-02 02:42:23 -05:00
|
|
|
/* Declarations for windows
|
2004-02-23 22:29:55 -05:00
|
|
|
Copyright (C) 1995, 1997, 1997, 1998, 2004
|
|
|
|
Free Software Foundation, Inc.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
This file is part of GNU Wget.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
GNU Wget is free software; you can redistribute it and/or modify
|
1999-12-02 02:42:23 -05:00
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
GNU Wget is distributed in the hope that it will be useful,
|
1999-12-02 02:42:23 -05:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2001-05-27 15:35:15 -04:00
|
|
|
along with Wget; if not, write to the Free Software
|
2002-05-17 22:16:36 -04:00
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
In addition, as a special exception, the Free Software Foundation
|
|
|
|
gives permission to link the code of its release of Wget with the
|
|
|
|
OpenSSL project's "OpenSSL" library (or with modified versions of it
|
|
|
|
that use the same license as the "OpenSSL" library), and distribute
|
|
|
|
the linked executables. You must obey the GNU General Public License
|
|
|
|
in all respects for all of the code used other than "OpenSSL". If you
|
|
|
|
modify this file, you may extend this exception to your version of the
|
|
|
|
file, but you are not obligated to do so. If you do not wish to do
|
|
|
|
so, delete this exception statement from your version. */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
#ifndef MSWINDOWS_H
|
|
|
|
#define MSWINDOWS_H
|
|
|
|
|
2003-10-03 12:37:47 -04:00
|
|
|
#ifndef WGET_H
|
2005-06-27 15:08:50 -04:00
|
|
|
# error This file should not be included directly.
|
2003-10-03 12:37:47 -04:00
|
|
|
#endif
|
|
|
|
|
2004-02-23 22:29:55 -05:00
|
|
|
/* Prevent inclusion of <winsock*.h> in <windows.h>. */
|
2003-10-03 12:37:47 -04:00
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
2005-06-27 15:08:50 -04:00
|
|
|
# define WIN32_LEAN_AND_MEAN
|
2003-10-03 12:37:47 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
2005-06-27 15:08:50 -04:00
|
|
|
/* We need winsock2.h for IPv6 and ws2tcpip.h for getaddrinfo, so
|
|
|
|
include both in ENABLE_IPV6 case. (ws2tcpip.h includes winsock2.h
|
|
|
|
only on MinGW.) */
|
|
|
|
#ifdef ENABLE_IPV6
|
2003-10-03 12:37:47 -04:00
|
|
|
# include <winsock2.h>
|
|
|
|
# include <ws2tcpip.h>
|
|
|
|
#else
|
|
|
|
# include <winsock.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef EAI_SYSTEM
|
|
|
|
# define EAI_SYSTEM -1 /* value doesn't matter */
|
|
|
|
#endif
|
|
|
|
|
2005-06-27 15:08:50 -04:00
|
|
|
/* Declares file access functions, such as open, creat, access, and
|
|
|
|
chmod. Unix declares these in unistd.h and fcntl.h. */
|
2003-10-03 12:37:47 -04:00
|
|
|
#include <io.h>
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
#ifndef S_ISDIR
|
|
|
|
# define S_ISDIR(m) (((m) & (_S_IFMT)) == (_S_IFDIR))
|
|
|
|
#endif
|
|
|
|
#ifndef S_ISLNK
|
|
|
|
# define S_ISLNK(a) 0
|
|
|
|
#endif
|
|
|
|
|
2004-02-23 22:29:55 -05:00
|
|
|
/* We have strcasecmp and strncasecmp, just under a different name. */
|
1999-12-02 02:42:23 -05:00
|
|
|
#define strcasecmp stricmp
|
|
|
|
#define strncasecmp strnicmp
|
|
|
|
|
2000-11-16 11:37:49 -05:00
|
|
|
/* The same for snprintf() and vsnprintf(). */
|
|
|
|
#define snprintf _snprintf
|
|
|
|
#define vsnprintf _vsnprintf
|
|
|
|
|
2005-02-23 17:21:04 -05:00
|
|
|
/* Define a wgint type under Windows. */
|
|
|
|
typedef __int64 wgint;
|
|
|
|
#define SIZEOF_WGINT 8
|
2005-02-26 09:00:20 -05:00
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define WGINT_MAX 9223372036854775807LL
|
|
|
|
#else
|
2005-02-25 19:23:24 -05:00
|
|
|
#define WGINT_MAX 9223372036854775807I64
|
2005-02-26 09:00:20 -05:00
|
|
|
#endif
|
2005-02-23 17:21:04 -05:00
|
|
|
|
2005-06-23 10:11:48 -04:00
|
|
|
/* str_to_wgint is a function with the semantics of strtol, but which
|
|
|
|
works on wgint. Since wgint is unconditionally 64-bit on Windows,
|
|
|
|
we #define it to str_to_int64, which either calls _strtoi64 or
|
|
|
|
implements the conversion manually. */
|
2005-02-23 17:21:04 -05:00
|
|
|
#define str_to_wgint str_to_int64
|
|
|
|
__int64 str_to_int64 (const char *, char **, int);
|
|
|
|
|
2005-06-23 10:29:42 -04:00
|
|
|
/* Windows has no symlink, therefore no lstat. Without symlinks lstat
|
|
|
|
is equivalent to stat anyway. */
|
1999-12-02 02:42:23 -05:00
|
|
|
#define lstat stat
|
|
|
|
|
2005-06-23 10:11:48 -04:00
|
|
|
/* Transparently support statting large files, like POSIX's LFS API
|
2005-06-23 10:29:42 -04:00
|
|
|
does. All Windows compilers we support use _stati64 (but have
|
|
|
|
different names for 2nd argument type, see below), so we use
|
|
|
|
that. */
|
2005-06-23 10:11:48 -04:00
|
|
|
#define stat(fname, buf) _stati64 (fname, buf)
|
|
|
|
|
2005-06-23 10:29:42 -04:00
|
|
|
/* On Windows the 64-bit stat requires an explicitly different type
|
|
|
|
for the 2nd argument, so we define a struct_stat macro that expands
|
|
|
|
to the appropriate type on Windows, and to the regular struct stat
|
|
|
|
on Unix.
|
|
|
|
|
|
|
|
Note that Borland C 5.5 has 64-bit stat (_stati64), but not a
|
|
|
|
64-bit fstat! Because of that we also need a struct_fstat that
|
|
|
|
points to struct_stat on Unix and on Windows, except under Borland,
|
|
|
|
where it points to the 32-bit struct stat. */
|
|
|
|
|
2005-06-23 10:11:48 -04:00
|
|
|
#ifndef __BORLANDC__
|
|
|
|
# define fstat(fd, buf) _fstati64 (fd, buf)
|
2005-06-23 10:29:42 -04:00
|
|
|
# define struct_stat struct _stati64
|
|
|
|
# define struct_fstat struct _stati64
|
|
|
|
#else /* __BORLANDC__ */
|
|
|
|
# define struct_stat struct stati64
|
|
|
|
# define struct_fstat struct stat
|
|
|
|
#endif /* __BORLANDC__ */
|
2005-06-23 10:11:48 -04:00
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
#define PATH_SEPARATOR '\\'
|
|
|
|
|
2001-11-29 09:15:11 -05:00
|
|
|
#ifdef HAVE_ISATTY
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
# define isatty _isatty
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2005-06-27 15:08:50 -04:00
|
|
|
/* Win32 doesn't support the MODE argument to mkdir. */
|
2005-03-20 05:41:46 -05:00
|
|
|
#define mkdir(a, b) _mkdir(a)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2005-06-27 15:08:50 -04:00
|
|
|
/* Additional declarations needed for IPv6: */
|
|
|
|
#ifdef ENABLE_IPV6
|
2005-06-30 09:48:10 -04:00
|
|
|
const char *inet_ntop (int, const void *, char *, socklen_t);
|
2005-06-27 15:08:50 -04:00
|
|
|
/* MinGW 3.7 (or older) prototypes gai_strerror(), but is missing
|
|
|
|
from all import libraries. */
|
|
|
|
# ifdef __MINGW32__
|
|
|
|
# undef gai_strerror
|
|
|
|
# define gai_strerror windows_strerror
|
|
|
|
# endif
|
|
|
|
#endif /* ENABLE_IPV6 */
|
|
|
|
|
2005-03-06 11:36:45 -05:00
|
|
|
#ifndef INHIBIT_WRAP
|
|
|
|
|
2005-06-27 15:08:50 -04:00
|
|
|
/* Winsock functions don't set errno, so we provide wrappers that do. */
|
2005-03-06 11:36:45 -05:00
|
|
|
|
2005-03-20 05:41:46 -05:00
|
|
|
#define socket wrapped_socket
|
|
|
|
#define bind wrapped_bind
|
|
|
|
#define connect wrapped_connect
|
|
|
|
#define recv wrapped_recv
|
|
|
|
#define send wrapped_send
|
|
|
|
#define select wrapped_select
|
|
|
|
#define getsockname wrapped_getsockname
|
|
|
|
#define getpeername wrapped_getpeername
|
|
|
|
#define setsockopt wrapped_setsockopt
|
|
|
|
#define closesocket wrapped_closesocket
|
2005-03-06 11:36:45 -05:00
|
|
|
|
|
|
|
#endif /* not INHIBIT_WRAP */
|
|
|
|
|
2005-03-20 05:41:46 -05:00
|
|
|
int wrapped_socket (int, int, int);
|
|
|
|
int wrapped_bind (int, struct sockaddr *, int);
|
|
|
|
int wrapped_connect (int, const struct sockaddr *, int);
|
|
|
|
int wrapped_recv (int, void *, int, int);
|
|
|
|
int wrapped_send (int, const void *, int, int);
|
|
|
|
int wrapped_select (int, fd_set *, fd_set *, fd_set *, const struct timeval *);
|
|
|
|
int wrapped_getsockname (int, struct sockaddr *, int *);
|
|
|
|
int wrapped_getpeername (int, struct sockaddr *, int *);
|
|
|
|
int wrapped_setsockopt (int, int, int, const void *, int);
|
|
|
|
int wrapped_closesocket (int);
|
2005-03-06 11:36:45 -05:00
|
|
|
|
|
|
|
/* Finally, provide a private version of strerror that does the
|
|
|
|
right thing with Winsock errors. */
|
|
|
|
#ifndef INHIBIT_WRAP
|
|
|
|
# define strerror windows_strerror
|
|
|
|
#endif
|
|
|
|
const char *windows_strerror (int);
|
|
|
|
|
2004-02-23 22:29:55 -05:00
|
|
|
/* Declarations of various socket errors: */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
#define EWOULDBLOCK WSAEWOULDBLOCK
|
|
|
|
#define EINPROGRESS WSAEINPROGRESS
|
|
|
|
#define EALREADY WSAEALREADY
|
|
|
|
#define ENOTSOCK WSAENOTSOCK
|
|
|
|
#define EDESTADDRREQ WSAEDESTADDRREQ
|
|
|
|
#define EMSGSIZE WSAEMSGSIZE
|
|
|
|
#define EPROTOTYPE WSAEPROTOTYPE
|
|
|
|
#define ENOPROTOOPT WSAENOPROTOOPT
|
|
|
|
#define EPROTONOSUPPORT WSAEPROTONOSUPPORT
|
|
|
|
#define ESOCKTNOSUPPORT WSAESOCKTNOSUPPORT
|
|
|
|
#define EOPNOTSUPP WSAEOPNOTSUPP
|
|
|
|
#define EPFNOSUPPORT WSAEPFNOSUPPORT
|
|
|
|
#define EAFNOSUPPORT WSAEAFNOSUPPORT
|
|
|
|
#define EADDRINUSE WSAEADDRINUSE
|
|
|
|
#define EADDRNOTAVAIL WSAEADDRNOTAVAIL
|
|
|
|
#define ENETDOWN WSAENETDOWN
|
|
|
|
#define ENETUNREACH WSAENETUNREACH
|
|
|
|
#define ENETRESET WSAENETRESET
|
|
|
|
#define ECONNABORTED WSAECONNABORTED
|
|
|
|
#define ECONNRESET WSAECONNRESET
|
|
|
|
#define ENOBUFS WSAENOBUFS
|
|
|
|
#define EISCONN WSAEISCONN
|
|
|
|
#define ENOTCONN WSAENOTCONN
|
|
|
|
#define ESHUTDOWN WSAESHUTDOWN
|
|
|
|
#define ETOOMANYREFS WSAETOOMANYREFS
|
|
|
|
#define ETIMEDOUT WSAETIMEDOUT
|
|
|
|
#define ECONNREFUSED WSAECONNREFUSED
|
|
|
|
#define ELOOP WSAELOOP
|
|
|
|
#define EHOSTDOWN WSAEHOSTDOWN
|
|
|
|
#define EHOSTUNREACH WSAEHOSTUNREACH
|
|
|
|
#define EPROCLIM WSAEPROCLIM
|
|
|
|
#define EUSERS WSAEUSERS
|
|
|
|
#define EDQUOT WSAEDQUOT
|
|
|
|
#define ESTALE WSAESTALE
|
|
|
|
#define EREMOTE WSAEREMOTE
|
|
|
|
|
|
|
|
/* Public functions. */
|
|
|
|
|
|
|
|
void ws_startup (void);
|
2004-02-25 18:45:24 -05:00
|
|
|
void ws_changetitle (const char *);
|
2003-09-30 17:24:36 -04:00
|
|
|
void ws_percenttitle (double);
|
1999-12-02 02:42:23 -05:00
|
|
|
char *ws_mypath (void);
|
2005-03-06 11:36:45 -05:00
|
|
|
void windows_main (int *, char **, char **);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
#endif /* MSWINDOWS_H */
|