1999-12-02 02:42:23 -05:00
|
|
|
/* Declarations for windows
|
2009-09-04 03:13:47 -04:00
|
|
|
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
2011-01-01 07:19:37 -05:00
|
|
|
2005, 2006, 2007, 2008, 2009, 2010, 2011 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
|
2007-07-10 01:53:22 -04:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-12-02 02:42:23 -05:00
|
|
|
(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
|
2007-07-10 01:53:22 -04:00
|
|
|
along with Wget. If not, see <http://www.gnu.org/licenses/>.
|
2002-05-17 22:16:36 -04:00
|
|
|
|
2007-11-28 03:05:33 -05:00
|
|
|
Additional permission under GNU GPL version 3 section 7
|
|
|
|
|
|
|
|
If you modify this program, or any covered work, by linking or
|
|
|
|
combining it with the OpenSSL project's OpenSSL library (or a
|
|
|
|
modified version of that library), containing parts covered by the
|
|
|
|
terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
|
|
|
|
grants you additional permission to convey the resulting work.
|
|
|
|
Corresponding Source for a non-source form of such a combination
|
|
|
|
shall include the source code for the parts of OpenSSL used as well
|
|
|
|
as that of the covered work. */
|
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>
|
|
|
|
|
2010-05-07 06:28:26 -04:00
|
|
|
#include <winsock2.h>
|
|
|
|
#include <ws2tcpip.h>
|
2003-10-03 12:37:47 -04:00
|
|
|
|
|
|
|
#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>
|
|
|
|
|
2005-07-08 14:51:27 -04:00
|
|
|
/* Declares getpid(). */
|
|
|
|
#include <process.h>
|
|
|
|
|
2005-07-06 18:09:50 -04:00
|
|
|
/* We have strcasecmp and strncasecmp, just under different names. */
|
|
|
|
#ifndef HAVE_STRCASECMP
|
|
|
|
# define strcasecmp stricmp
|
|
|
|
#endif
|
|
|
|
#ifndef HAVE_STRNCASECMP
|
|
|
|
# define strncasecmp strnicmp
|
|
|
|
#endif
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2008-09-02 18:57:43 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2005-02-23 17:21:04 -05:00
|
|
|
/* Define a wgint type under Windows. */
|
|
|
|
typedef __int64 wgint;
|
|
|
|
#define SIZEOF_WGINT 8
|
|
|
|
|
2005-08-11 17:18:56 -04:00
|
|
|
/* str_to_wgint is a function with the semantics of strtol[l], but
|
|
|
|
which works on wgint. */
|
2005-07-06 19:25:26 -04:00
|
|
|
#if defined HAVE_STRTOLL
|
|
|
|
# define str_to_wgint strtoll
|
|
|
|
#elif defined HAVE__STRTOI64
|
|
|
|
# define str_to_wgint _strtoi64
|
|
|
|
#else
|
2005-08-11 17:18:56 -04:00
|
|
|
# define str_to_wgint strtoll
|
|
|
|
# define NEED_STRTOLL
|
2005-08-12 08:56:52 -04:00
|
|
|
# define strtoll_type __int64
|
2005-07-06 19:25:26 -04:00
|
|
|
#endif
|
2005-02-23 17:21:04 -05:00
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
#define PATH_SEPARATOR '\\'
|
|
|
|
|
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-07-06 18:09:50 -04:00
|
|
|
#endif
|
2005-06-27 15:08:50 -04:00
|
|
|
|
2011-05-15 15:59:50 -04:00
|
|
|
/* ioctl needed by set_windows_fd_as_blocking_socket() */
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
/* 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);
|
2007-10-10 23:57:42 -04:00
|
|
|
void windows_main (char **);
|
2011-05-15 15:59:50 -04:00
|
|
|
void set_windows_fd_as_blocking_socket (int);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
#endif /* MSWINDOWS_H */
|