d3d8/tests: Make the window client rect match the d3d swapchain size.
[wine.git] / include / ws2tcpip.h
blobe14a6607c1e4567f638b788dc783b3dc9652c871
1 /*
2 * Copyright (C) 2001 Francois Gouget
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef __WS2TCPIP__
20 #define __WS2TCPIP__
22 #include <winsock2.h>
23 #include <ws2ipdef.h>
24 #include <limits.h>
26 #ifdef USE_WS_PREFIX
27 #define WS(x) WS_##x
28 #else
29 #define WS(x) x
30 #endif
32 /* for addrinfo calls */
33 typedef struct WS(addrinfo)
35 int ai_flags;
36 int ai_family;
37 int ai_socktype;
38 int ai_protocol;
39 SIZE_T ai_addrlen;
40 char * ai_canonname;
41 struct WS(sockaddr)* ai_addr;
42 struct WS(addrinfo)* ai_next;
43 } ADDRINFOA, *PADDRINFOA;
45 typedef struct WS(addrinfoW)
47 int ai_flags;
48 int ai_family;
49 int ai_socktype;
50 int ai_protocol;
51 SIZE_T ai_addrlen;
52 PWSTR ai_canonname;
53 struct WS(sockaddr)* ai_addr;
54 struct WS(addrinfoW)* ai_next;
55 } ADDRINFOW, *PADDRINFOW;
57 typedef int WS(socklen_t);
59 typedef ADDRINFOA ADDRINFO, *LPADDRINFO;
61 /* Possible Windows flags for getaddrinfo() */
62 #ifndef USE_WS_PREFIX
63 # define AI_PASSIVE 0x00000001
64 # define AI_CANONNAME 0x00000002
65 # define AI_NUMERICHOST 0x00000004
66 # define AI_NUMERICSERV 0x00000008
67 # define AI_ADDRCONFIG 0x00000400
68 # define AI_V4MAPPED 0x00000800
69 # define AI_NON_AUTHORITATIVE 0x00004000
70 # define AI_SECURE 0x00008000
71 # define AI_RETURN_PREFERRED_NAMES 0x00010000
72 # define AI_DISABLE_IDN_ENCODING 0x00080000
73 /* getaddrinfo error codes */
74 # define EAI_AGAIN WSATRY_AGAIN
75 # define EAI_BADFLAGS WSAEINVAL
76 # define EAI_FAIL WSANO_RECOVERY
77 # define EAI_FAMILY WSAEAFNOSUPPORT
78 # define EAI_MEMORY WSA_NOT_ENOUGH_MEMORY
79 # define EAI_NODATA EAI_NONAME
80 # define EAI_NONAME WSAHOST_NOT_FOUND
81 # define EAI_SERVICE WSATYPE_NOT_FOUND
82 # define EAI_SOCKTYPE WSAESOCKTNOSUPPORT
83 #else
84 # define WS_AI_PASSIVE 0x00000001
85 # define WS_AI_CANONNAME 0x00000002
86 # define WS_AI_NUMERICHOST 0x00000004
87 # define WS_AI_NUMERICSERV 0x00000008
88 # define WS_AI_ADDRCONFIG 0x00000400
89 # define WS_AI_V4MAPPED 0x00000800
90 # define WS_AI_NON_AUTHORITATIVE 0x00004000
91 # define WS_AI_SECURE 0x00008000
92 # define WS_AI_RETURN_PREFERRED_NAMES 0x00010000
93 # define WS_AI_DISABLE_IDN_ENCODING 0x00080000
94 /* getaddrinfo error codes */
95 # define WS_EAI_AGAIN WSATRY_AGAIN
96 # define WS_EAI_BADFLAGS WSAEINVAL
97 # define WS_EAI_FAIL WSANO_RECOVERY
98 # define WS_EAI_FAMILY WSAEAFNOSUPPORT
99 # define WS_EAI_MEMORY WSA_NOT_ENOUGH_MEMORY
100 # define WS_EAI_NODATA WS_EAI_NONAME
101 # define WS_EAI_NONAME WSAHOST_NOT_FOUND
102 # define WS_EAI_SERVICE WSATYPE_NOT_FOUND
103 # define WS_EAI_SOCKTYPE WSAESOCKTNOSUPPORT
104 #endif
106 #ifndef USE_WS_PREFIX
107 # define NI_MAXHOST 1025
108 # define NI_MAXSERV 32
109 #else
110 # define WS_NI_MAXHOST 1025
111 # define WS_NI_MAXSERV 32
112 #endif
114 /* Possible Windows flags for getnameinfo() */
115 #ifndef USE_WS_PREFIX
116 # define NI_NOFQDN 0x01
117 # define NI_NUMERICHOST 0x02
118 # define NI_NAMEREQD 0x04
119 # define NI_NUMERICSERV 0x08
120 # define NI_DGRAM 0x10
121 #else
122 # define WS_NI_NOFQDN 0x01
123 # define WS_NI_NUMERICHOST 0x02
124 # define WS_NI_NAMEREQD 0x04
125 # define WS_NI_NUMERICSERV 0x08
126 # define WS_NI_DGRAM 0x10
127 #endif
130 #ifdef __cplusplus
131 extern "C" {
132 #endif
134 #define GAI_STRERROR_BUFFER_SIZE 1024
136 static inline char *gai_strerrorA(int errcode)
138 static char buffer[GAI_STRERROR_BUFFER_SIZE + 1];
140 /* FIXME: should format message from system, ignoring inserts in neutral
141 * language */
142 buffer[0] = '\0';
144 return buffer;
147 static inline WCHAR *gai_strerrorW(int errcode)
149 static WCHAR buffer[GAI_STRERROR_BUFFER_SIZE + 1];
151 /* FIXME: should format message from system, ignoring inserts in neutral
152 * language */
153 buffer[0] = '\0';
155 return buffer;
158 #ifdef USE_WS_PREFIX
159 # define WS_gai_strerror WINELIB_NAME_AW(gai_strerror)
160 #elif defined(WINE_NO_UNICODE_MACROS)
161 # define gai_strerror gai_strerrorA
162 #else
163 # define gai_strerror WINELIB_NAME_AW(gai_strerror)
164 #endif
166 typedef void (CALLBACK *LPLOOKUPSERVICE_COMPLETION_ROUTINE)(DWORD,DWORD,WSAOVERLAPPED*);
168 void WINAPI WS(freeaddrinfo)(LPADDRINFO);
169 #define FreeAddrInfoA WS(freeaddrinfo)
170 void WINAPI FreeAddrInfoW(PADDRINFOW);
171 #define FreeAddrInfo WINELIB_NAME_AW(FreeAddrInfo)
172 int WINAPI WS(getaddrinfo)(const char*,const char*,const struct WS(addrinfo)*,struct WS(addrinfo)**);
173 #define GetAddrInfoA WS(getaddrinfo)
174 int WINAPI GetAddrInfoW(PCWSTR,PCWSTR,const ADDRINFOW*,PADDRINFOW*);
175 #define GetAddrInfo WINELIB_NAME_AW(GetAddrInfo)
176 int WINAPI GetAddrInfoExA(const char*,const char*,DWORD,GUID*,const ADDRINFOEXA*,ADDRINFOEXA**,struct timeval*,
177 OVERLAPPED*,LPLOOKUPSERVICE_COMPLETION_ROUTINE,HANDLE*);
178 int WINAPI GetAddrInfoExW(const WCHAR*,const WCHAR*,DWORD,GUID*, const ADDRINFOEXW*,ADDRINFOEXW**,struct timeval*,
179 OVERLAPPED*,LPLOOKUPSERVICE_COMPLETION_ROUTINE,HANDLE*);
180 #define GetAddrInfoEx WINELIB_NAME_AW(GetAddrInfoExW)
181 int WINAPI WS(getnameinfo)(const SOCKADDR*,WS(socklen_t),PCHAR,DWORD,PCHAR,DWORD,INT);
182 #define GetNameInfoA WS(getnameinfo)
183 INT WINAPI GetNameInfoW(const SOCKADDR*,WS(socklen_t),PWCHAR,DWORD,PWCHAR,DWORD,INT);
184 #define GetNameInfo WINELIB_NAME_AW(GetNameInfo)
185 PCSTR WINAPI WS(inet_ntop)(INT,PVOID,PSTR,SIZE_T);
186 #define InetNtopA WS(inet_ntop)
187 PCWSTR WINAPI InetNtopW(INT,PVOID,PWSTR,SIZE_T);
188 #define InetNtop WINELIB_NAME_AW(InetNtop)
189 int WINAPI WS(inet_pton)(INT,PCSTR,PVOID);
190 #define InetPtonA WS(inet_pton)
191 int WINAPI InetPtonW(INT,PCWSTR,PVOID);
192 #define InetPton WINELIB_NAME_AW(InetPton)
195 * Ws2tcpip Function Typedefs
197 * Remember to keep this section in sync with the
198 * prototypes above.
200 #if INCL_WINSOCK_API_TYPEDEFS
202 typedef void (WINAPI *LPFN_FREEADDRINFO)(LPADDRINFO);
203 #define LPFN_FREEADDRINFOA LPFN_FREEADDRINFO
204 typedef void (WINAPI *LPFN_FREEADDRINFOW)(PADDRINFOW);
205 #define LPFN_FREEADDRINFOT WINELIB_NAME_AW(LPFN_FREEADDRINFO)
206 typedef int (WINAPI *LPFN_GETADDRINFO)(const char*,const char*,const struct WS(addrinfo)*,struct WS(addrinfo)**);
207 #define LPFN_GETADDRINFOA LPFN_GETADDRINFO
208 typedef int (WINAPI *LPFN_GETADDRINFOW)(PCWSTR,PCWSTR,const ADDRINFOW*,PADDRINFOW*);
209 #define LPFN_GETADDRINFOT WINELIB_NAME_AW(LPFN_GETADDRINFO)
210 typedef int (WINAPI *LPFN_GETNAMEINFO)(const struct sockaddr*,socklen_t,char*,DWORD,char*,DWORD,int);
211 #define LPFN_GETNAMEINFOA LPFN_GETNAMEINFO
212 typedef int (WINAPI *LPFN_GETNAMEINFOW)(const SOCKADDR*,socklen_t,PWCHAR,DWORD,PWCHAR,DWORD,INT);
213 #define LPFN_GETNAMEINFOT WINELIB_NAME_AW(LPFN_GETNAMEINFO)
215 #endif
217 #ifdef __cplusplus
219 #endif
221 #endif /* __WS2TCPIP__ */