]> sjero.net Git - wget/blob - src/mswindows.h
Dependency improvements (but still needs some work).
[wget] / src / mswindows.h
1 /* Declarations for windows
2    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3    2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
4
5 This file is part of GNU Wget.
6
7 GNU Wget is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Wget is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Wget.  If not, see <http://www.gnu.org/licenses/>.
19
20 Additional permission under GNU GPL version 3 section 7
21
22 If you modify this program, or any covered work, by linking or
23 combining it with the OpenSSL project's OpenSSL library (or a
24 modified version of that library), containing parts covered by the
25 terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
26 grants you additional permission to convey the resulting work.
27 Corresponding Source for a non-source form of such a combination
28 shall include the source code for the parts of OpenSSL used as well
29 as that of the covered work.  */
30
31 #ifndef MSWINDOWS_H
32 #define MSWINDOWS_H
33
34 #ifndef WGET_H
35 # error This file should not be included directly.
36 #endif
37
38 /* Prevent inclusion of <winsock*.h> in <windows.h>.  */
39 #ifndef WIN32_LEAN_AND_MEAN
40 # define WIN32_LEAN_AND_MEAN
41 #endif
42
43 #include <windows.h>
44
45 /* We need winsock2.h for IPv6 and ws2tcpip.h for getaddrinfo, so
46   include both in ENABLE_IPV6 case.  (ws2tcpip.h includes winsock2.h
47   only on MinGW.) */
48 #ifdef ENABLE_IPV6
49 # include <winsock2.h>
50 # include <ws2tcpip.h>
51 #else
52 # include <winsock.h>
53 #endif
54
55 #ifndef EAI_SYSTEM
56 # define EAI_SYSTEM -1   /* value doesn't matter */
57 #endif
58
59 /* Declares file access functions, such as open, creat, access, and
60    chmod.  Unix declares these in unistd.h and fcntl.h.  */
61 #include <io.h>
62
63 /* Declares getpid(). */
64 #include <process.h>
65
66 #ifndef S_ISDIR
67 # define S_ISDIR(m) (((m) & (_S_IFMT)) == (_S_IFDIR))
68 #endif
69 #ifndef S_ISLNK
70 # define S_ISLNK(a) 0
71 #endif
72
73 /* We have strcasecmp and strncasecmp, just under different names.  */
74 #ifndef HAVE_STRCASECMP
75 # define strcasecmp stricmp
76 #endif
77 #ifndef HAVE_STRNCASECMP
78 # define strncasecmp strnicmp
79 #endif
80
81 /* The same for snprintf() and vsnprintf().  */
82 #define snprintf _snprintf
83 #define vsnprintf _vsnprintf
84
85 /* Define a wgint type under Windows. */
86 typedef __int64 wgint;
87 #define SIZEOF_WGINT 8
88
89 /* str_to_wgint is a function with the semantics of strtol[l], but
90    which works on wgint.  */
91 #if defined HAVE_STRTOLL
92 # define str_to_wgint strtoll
93 #elif defined HAVE__STRTOI64
94 # define str_to_wgint _strtoi64
95 #else
96 # define str_to_wgint strtoll
97 # define NEED_STRTOLL
98 # define strtoll_type __int64
99 #endif
100
101 /* Windows has no symlink, therefore no lstat.  Without symlinks lstat
102    is equivalent to stat anyway.  */
103 #define lstat stat
104
105 /* Define LFS aliases for stat and fstat. */
106 #ifdef stat_alias
107 # define stat(f, b) stat_alias (f, b)
108 #endif
109 #ifdef fstat_alias
110 # define fstat(f, b) fstat_alias (f, b)
111 #endif
112
113 #define PATH_SEPARATOR '\\'
114
115 /* Win32 doesn't support the MODE argument to mkdir.  */
116 #include <direct.h>
117 #define mkdir(a, b) (mkdir) (a)
118
119 /* Additional declarations needed for IPv6: */
120 #ifdef ENABLE_IPV6
121 const char *inet_ntop (int, const void *, char *, socklen_t);
122 #endif
123
124 #ifdef NEED_GAI_STRERROR
125 # undef gai_strerror
126 # define gai_strerror windows_strerror
127 #endif
128
129 #ifndef INHIBIT_WRAP
130
131 /* Winsock functions don't set errno, so we provide wrappers that do. */
132
133 #define socket wrapped_socket
134 #define bind wrapped_bind
135 #define connect wrapped_connect
136 #define listen wrapped_listen
137 #define accept wrapped_accept
138 #define recv wrapped_recv
139 #define send wrapped_send
140 #define select wrapped_select
141 #define getsockname wrapped_getsockname
142 #define getpeername wrapped_getpeername
143 #define setsockopt wrapped_setsockopt
144 #define closesocket wrapped_closesocket
145
146 #endif /* not INHIBIT_WRAP */
147
148 int wrapped_socket (int, int, int);
149 int wrapped_bind (int, struct sockaddr *, int);
150 int wrapped_connect (int, const struct sockaddr *, int);
151 int wrapped_listen (int s, int backlog);
152 int wrapped_accept (int s, struct sockaddr *a, int *alen);
153 int wrapped_recv (int, void *, int, int);
154 int wrapped_send (int, const void *, int, int);
155 int wrapped_select (int, fd_set *, fd_set *, fd_set *, const struct timeval *);
156 int wrapped_getsockname (int, struct sockaddr *, int *);
157 int wrapped_getpeername (int, struct sockaddr *, int *);
158 int wrapped_setsockopt (int, int, int, const void *, int);
159 int wrapped_closesocket (int);
160
161 /* Finally, provide a private version of strerror that does the
162    right thing with Winsock errors. */
163 #ifndef INHIBIT_WRAP
164 # define strerror windows_strerror
165 #endif
166 const char *windows_strerror (int);
167
168 /* Declarations of various socket errors:  */
169
170 #define EWOULDBLOCK             WSAEWOULDBLOCK
171 #define EINPROGRESS             WSAEINPROGRESS
172 #define EALREADY                WSAEALREADY
173 #define ENOTSOCK                WSAENOTSOCK
174 #define EDESTADDRREQ            WSAEDESTADDRREQ
175 #define EMSGSIZE                WSAEMSGSIZE
176 #define EPROTOTYPE              WSAEPROTOTYPE
177 #define ENOPROTOOPT             WSAENOPROTOOPT
178 #define EPROTONOSUPPORT         WSAEPROTONOSUPPORT
179 #define ESOCKTNOSUPPORT         WSAESOCKTNOSUPPORT
180 #define EOPNOTSUPP              WSAEOPNOTSUPP
181 #define EPFNOSUPPORT            WSAEPFNOSUPPORT
182 #define EAFNOSUPPORT            WSAEAFNOSUPPORT
183 #define EADDRINUSE              WSAEADDRINUSE
184 #define EADDRNOTAVAIL           WSAEADDRNOTAVAIL
185 #define ENETDOWN                WSAENETDOWN
186 #define ENETUNREACH             WSAENETUNREACH
187 #define ENETRESET               WSAENETRESET
188 #define ECONNABORTED            WSAECONNABORTED
189 #define ECONNRESET              WSAECONNRESET
190 #define ENOBUFS                 WSAENOBUFS
191 #define EISCONN                 WSAEISCONN
192 #define ENOTCONN                WSAENOTCONN
193 #define ESHUTDOWN               WSAESHUTDOWN
194 #define ETOOMANYREFS            WSAETOOMANYREFS
195 #define ETIMEDOUT               WSAETIMEDOUT
196 #define ECONNREFUSED            WSAECONNREFUSED
197 #define ELOOP                   WSAELOOP
198 #define EHOSTDOWN               WSAEHOSTDOWN
199 #define EHOSTUNREACH            WSAEHOSTUNREACH
200 #define EPROCLIM                WSAEPROCLIM
201 #define EUSERS                  WSAEUSERS
202 #define EDQUOT                  WSAEDQUOT
203 #define ESTALE                  WSAESTALE
204 #define EREMOTE                 WSAEREMOTE
205
206 /* Public functions.  */
207
208 void ws_startup (void);
209 void ws_changetitle (const char *);
210 void ws_percenttitle (double);
211 char *ws_mypath (void);
212 void windows_main (char **);
213
214 #endif /* MSWINDOWS_H */