]> sjero.net Git - wget/blob - src/mswindows.h
mass change: update copyright years.
[wget] / src / mswindows.h
1 /* Declarations for windows
2    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3    2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
4    Inc.
5
6 This file is part of GNU Wget.
7
8 GNU Wget is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 GNU Wget is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with Wget.  If not, see <http://www.gnu.org/licenses/>.
20
21 Additional permission under GNU GPL version 3 section 7
22
23 If you modify this program, or any covered work, by linking or
24 combining it with the OpenSSL project's OpenSSL library (or a
25 modified version of that library), containing parts covered by the
26 terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
27 grants you additional permission to convey the resulting work.
28 Corresponding Source for a non-source form of such a combination
29 shall include the source code for the parts of OpenSSL used as well
30 as that of the covered work.  */
31
32 #ifndef MSWINDOWS_H
33 #define MSWINDOWS_H
34
35 #ifndef WGET_H
36 # error This file should not be included directly.
37 #endif
38
39 /* Prevent inclusion of <winsock*.h> in <windows.h>.  */
40 #ifndef WIN32_LEAN_AND_MEAN
41 # define WIN32_LEAN_AND_MEAN
42 #endif
43
44 #include <windows.h>
45
46 #include <winsock2.h>
47 #include <ws2tcpip.h>
48
49 #ifndef EAI_SYSTEM
50 # define EAI_SYSTEM -1   /* value doesn't matter */
51 #endif
52
53 /* Declares file access functions, such as open, creat, access, and
54    chmod.  Unix declares these in unistd.h and fcntl.h.  */
55 #include <io.h>
56
57 /* Declares getpid(). */
58 #include <process.h>
59
60 #ifndef S_ISDIR
61 # define S_ISDIR(m) (((m) & (_S_IFMT)) == (_S_IFDIR))
62 #endif
63 #ifndef S_ISLNK
64 # define S_ISLNK(a) 0
65 #endif
66
67 /* We have strcasecmp and strncasecmp, just under different names.  */
68 #ifndef HAVE_STRCASECMP
69 # define strcasecmp stricmp
70 #endif
71 #ifndef HAVE_STRNCASECMP
72 # define strncasecmp strnicmp
73 #endif
74
75 #include <stdio.h>
76
77 /* The same for snprintf() and vsnprintf().  */
78 #define snprintf _snprintf
79 #define vsnprintf _vsnprintf
80
81 /* Define a wgint type under Windows. */
82 typedef __int64 wgint;
83 #define SIZEOF_WGINT 8
84
85 /* str_to_wgint is a function with the semantics of strtol[l], but
86    which works on wgint.  */
87 #if defined HAVE_STRTOLL
88 # define str_to_wgint strtoll
89 #elif defined HAVE__STRTOI64
90 # define str_to_wgint _strtoi64
91 #else
92 # define str_to_wgint strtoll
93 # define NEED_STRTOLL
94 # define strtoll_type __int64
95 #endif
96
97 /* Windows has no symlink, therefore no lstat.  Without symlinks lstat
98    is equivalent to stat anyway.  */
99 #define lstat stat
100
101 /* Define LFS aliases for stat and fstat. */
102 #ifdef stat_alias
103 # define stat(f, b) stat_alias (f, b)
104 #endif
105 #ifdef fstat_alias
106 # define fstat(f, b) fstat_alias (f, b)
107 #endif
108
109 #define PATH_SEPARATOR '\\'
110
111 /* Win32 doesn't support the MODE argument to mkdir.  */
112 #include <direct.h>
113 #define mkdir(a, b) (mkdir) (a)
114
115 /* Additional declarations needed for IPv6: */
116 #ifdef ENABLE_IPV6
117 const char *inet_ntop (int, const void *, char *, socklen_t);
118 #endif
119
120 #ifdef NEED_GAI_STRERROR
121 # undef gai_strerror
122 # define gai_strerror strerror
123 #endif
124
125 /* Public functions.  */
126
127 void ws_startup (void);
128 void ws_changetitle (const char *);
129 void ws_percenttitle (double);
130 char *ws_mypath (void);
131 void windows_main (char **);
132
133 #endif /* MSWINDOWS_H */