• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef HEADER_CURL_SETUP_WIN32_H
2 #define HEADER_CURL_SETUP_WIN32_H
3 /***************************************************************************
4  *                                  _   _ ____  _
5  *  Project                     ___| | | |  _ \| |
6  *                             / __| | | | |_) | |
7  *                            | (__| |_| |  _ <| |___
8  *                             \___|\___/|_| \_\_____|
9  *
10  * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
11  *
12  * This software is licensed as described in the file COPYING, which
13  * you should have received as part of this distribution. The terms
14  * are also available at https://curl.se/docs/copyright.html.
15  *
16  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17  * copies of the Software, and permit persons to whom the Software is
18  * furnished to do so, under the terms of the COPYING file.
19  *
20  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21  * KIND, either express or implied.
22  *
23  ***************************************************************************/
24 
25 /*
26  * Include header files for windows builds before redefining anything.
27  * Use this preprocessor block only to include or exclude windows.h,
28  * winsock2.h or ws2tcpip.h. Any other windows thing belongs
29  * to any other further and independent block.  Under Cygwin things work
30  * just as under linux (e.g. <sys/socket.h>) and the winsock headers should
31  * never be included when __CYGWIN__ is defined.  configure script takes
32  * care of this, not defining HAVE_WINDOWS_H, HAVE_WINSOCK2_H,
33  * neither HAVE_WS2TCPIP_H when __CYGWIN__ is defined.
34  */
35 
36 #ifdef HAVE_WINDOWS_H
37 #  if defined(UNICODE) && !defined(_UNICODE)
38 #    define _UNICODE
39 #  endif
40 #  if defined(_UNICODE) && !defined(UNICODE)
41 #    define UNICODE
42 #  endif
43 #  include <winerror.h>
44 #  include <windows.h>
45 #  ifdef HAVE_WINSOCK2_H
46 #    include <winsock2.h>
47 #    ifdef HAVE_WS2TCPIP_H
48 #      include <ws2tcpip.h>
49 #    endif
50 #  endif
51 #  include <tchar.h>
52 #  ifdef UNICODE
53      typedef wchar_t *(*curl_wcsdup_callback)(const wchar_t *str);
54 #  endif
55 #endif
56 
57 /*
58  * Define USE_WINSOCK to 2 if we have and use WINSOCK2 API, else
59  * undefine USE_WINSOCK.
60  */
61 
62 #undef USE_WINSOCK
63 
64 #ifdef HAVE_WINSOCK2_H
65 #  define USE_WINSOCK 2
66 #endif
67 
68 /*
69  * Define _WIN32_WINNT_[OS] symbols because not all Windows build systems have
70  * those symbols to compare against, and even those that do may be missing
71  * newer symbols.
72  */
73 
74 #ifndef _WIN32_WINNT_NT4
75 #define _WIN32_WINNT_NT4            0x0400   /* Windows NT 4.0 */
76 #endif
77 #ifndef _WIN32_WINNT_WIN2K
78 #define _WIN32_WINNT_WIN2K          0x0500   /* Windows 2000 */
79 #endif
80 #ifndef _WIN32_WINNT_WINXP
81 #define _WIN32_WINNT_WINXP          0x0501   /* Windows XP */
82 #endif
83 #ifndef _WIN32_WINNT_WS03
84 #define _WIN32_WINNT_WS03           0x0502   /* Windows Server 2003 */
85 #endif
86 #ifndef _WIN32_WINNT_WIN6
87 #define _WIN32_WINNT_WIN6           0x0600   /* Windows Vista */
88 #endif
89 #ifndef _WIN32_WINNT_VISTA
90 #define _WIN32_WINNT_VISTA          0x0600   /* Windows Vista */
91 #endif
92 #ifndef _WIN32_WINNT_WS08
93 #define _WIN32_WINNT_WS08           0x0600   /* Windows Server 2008 */
94 #endif
95 #ifndef _WIN32_WINNT_LONGHORN
96 #define _WIN32_WINNT_LONGHORN       0x0600   /* Windows Vista */
97 #endif
98 #ifndef _WIN32_WINNT_WIN7
99 #define _WIN32_WINNT_WIN7           0x0601   /* Windows 7 */
100 #endif
101 #ifndef _WIN32_WINNT_WIN8
102 #define _WIN32_WINNT_WIN8           0x0602   /* Windows 8 */
103 #endif
104 #ifndef _WIN32_WINNT_WINBLUE
105 #define _WIN32_WINNT_WINBLUE        0x0603   /* Windows 8.1 */
106 #endif
107 #ifndef _WIN32_WINNT_WINTHRESHOLD
108 #define _WIN32_WINNT_WINTHRESHOLD   0x0A00   /* Windows 10 */
109 #endif
110 #ifndef _WIN32_WINNT_WIN10
111 #define _WIN32_WINNT_WIN10          0x0A00   /* Windows 10 */
112 #endif
113 
114 #endif /* HEADER_CURL_SETUP_WIN32_H */
115