kernel32: Change all functions to use CDECL.
[wine/wine64.git] / dlls / wininet / internet.h
blob8de85ff5f24a3b28bda65c038a8eecfff710045f
1 /*
2 * Wininet
4 * Copyright 1999 Corel Corporation
6 * Ulrich Czekalla
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library 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 GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #ifndef _WINE_INTERNET_H_
24 #define _WINE_INTERNET_H_
26 #ifndef __WINE_CONFIG_H
27 # error You must include config.h to use this header
28 #endif
30 #include "wine/unicode.h"
31 #include "wine/list.h"
33 #include <time.h>
34 #ifdef HAVE_NETDB_H
35 # include <netdb.h>
36 #endif
37 #ifdef HAVE_NETINET_IN_H
38 # include <sys/types.h>
39 # include <netinet/in.h>
40 #endif
41 #ifdef HAVE_SYS_SOCKET_H
42 # include <sys/socket.h>
43 #endif
45 #if !defined(__MINGW32__) && !defined(_MSC_VER)
46 #define closesocket close
47 #define ioctlsocket ioctl
48 #endif /* __MINGW32__ */
50 /* used for netconnection.c stuff */
51 typedef struct
53 BOOL useSSL;
54 int socketFD;
55 void *ssl_s;
56 char *peek_msg;
57 char *peek_msg_mem;
58 size_t peek_len;
59 } WININET_NETCONNECTION;
61 static inline LPWSTR WININET_strdupW( LPCWSTR str )
63 LPWSTR ret = HeapAlloc( GetProcessHeap(), 0, (strlenW(str) + 1)*sizeof(WCHAR) );
64 if (ret) strcpyW( ret, str );
65 return ret;
68 static inline LPWSTR WININET_strdup_AtoW( LPCSTR str )
70 int len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0);
71 LPWSTR ret = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
72 if (ret)
73 MultiByteToWideChar( CP_ACP, 0, str, -1, ret, len);
74 return ret;
77 static inline LPSTR WININET_strdup_WtoA( LPCWSTR str )
79 int len = WideCharToMultiByte( CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
80 LPSTR ret = HeapAlloc( GetProcessHeap(), 0, len );
81 if (ret)
82 WideCharToMultiByte( CP_ACP, 0, str, -1, ret, len, NULL, NULL);
83 return ret;
86 static inline void WININET_find_data_WtoA(LPWIN32_FIND_DATAW dataW, LPWIN32_FIND_DATAA dataA)
88 dataA->dwFileAttributes = dataW->dwFileAttributes;
89 dataA->ftCreationTime = dataW->ftCreationTime;
90 dataA->ftLastAccessTime = dataW->ftLastAccessTime;
91 dataA->ftLastWriteTime = dataW->ftLastWriteTime;
92 dataA->nFileSizeHigh = dataW->nFileSizeHigh;
93 dataA->nFileSizeLow = dataW->nFileSizeLow;
94 dataA->dwReserved0 = dataW->dwReserved0;
95 dataA->dwReserved1 = dataW->dwReserved1;
96 WideCharToMultiByte(CP_ACP, 0, dataW->cFileName, -1,
97 dataA->cFileName, sizeof(dataA->cFileName),
98 NULL, NULL);
99 WideCharToMultiByte(CP_ACP, 0, dataW->cAlternateFileName, -1,
100 dataA->cAlternateFileName, sizeof(dataA->cAlternateFileName),
101 NULL, NULL);
104 typedef enum
106 WH_HINIT = INTERNET_HANDLE_TYPE_INTERNET,
107 WH_HFTPSESSION = INTERNET_HANDLE_TYPE_CONNECT_FTP,
108 WH_HGOPHERSESSION = INTERNET_HANDLE_TYPE_CONNECT_GOPHER,
109 WH_HHTTPSESSION = INTERNET_HANDLE_TYPE_CONNECT_HTTP,
110 WH_HFILE = INTERNET_HANDLE_TYPE_FTP_FILE,
111 WH_HFTPFINDNEXT = INTERNET_HANDLE_TYPE_FTP_FIND,
112 WH_HHTTPREQ = INTERNET_HANDLE_TYPE_HTTP_REQUEST,
113 } WH_TYPE;
115 #define INET_OPENURL 0x0001
116 #define INET_CALLBACKW 0x0002
118 typedef struct _WININETHANDLEHEADER WININETHANDLEHEADER, *LPWININETHANDLEHEADER;
120 typedef struct {
121 void (*Destroy)(WININETHANDLEHEADER*);
122 void (*CloseConnection)(WININETHANDLEHEADER*);
123 DWORD (*QueryOption)(WININETHANDLEHEADER*,DWORD,void*,DWORD*,BOOL);
124 DWORD (*SetOption)(WININETHANDLEHEADER*,DWORD,void*,DWORD);
125 DWORD (*ReadFile)(WININETHANDLEHEADER*,void*,DWORD,DWORD*);
126 DWORD (*ReadFileExA)(WININETHANDLEHEADER*,INTERNET_BUFFERSA*,DWORD,DWORD_PTR);
127 BOOL (*WriteFile)(WININETHANDLEHEADER*,const void*,DWORD,DWORD*);
128 DWORD (*QueryDataAvailable)(WININETHANDLEHEADER*,DWORD*,DWORD,DWORD_PTR);
129 DWORD (*FindNextFileW)(WININETHANDLEHEADER*,void*);
130 } HANDLEHEADERVtbl;
132 struct _WININETHANDLEHEADER
134 WH_TYPE htype;
135 const HANDLEHEADERVtbl *vtbl;
136 HINTERNET hInternet;
137 DWORD dwFlags;
138 DWORD_PTR dwContext;
139 DWORD dwError;
140 DWORD dwInternalFlags;
141 LONG refs;
142 INTERNET_STATUS_CALLBACK lpfnStatusCB;
143 struct list entry;
144 struct list children;
148 typedef struct
150 WININETHANDLEHEADER hdr;
151 LPWSTR lpszAgent;
152 LPWSTR lpszProxy;
153 LPWSTR lpszProxyBypass;
154 LPWSTR lpszProxyUsername;
155 LPWSTR lpszProxyPassword;
156 DWORD dwAccessType;
157 } WININETAPPINFOW, *LPWININETAPPINFOW;
160 typedef struct
162 WININETHANDLEHEADER hdr;
163 WININETAPPINFOW *lpAppInfo;
164 LPWSTR lpszHostName; /* the final destination of the request */
165 LPWSTR lpszServerName; /* the name of the server we directly connect to */
166 LPWSTR lpszUserName;
167 LPWSTR lpszPassword;
168 INTERNET_PORT nHostPort; /* the final destination port of the request */
169 INTERNET_PORT nServerPort; /* the port of the server we directly connect to */
170 struct sockaddr_in socketAddress;
171 } WININETHTTPSESSIONW, *LPWININETHTTPSESSIONW;
173 #define HDR_ISREQUEST 0x0001
174 #define HDR_COMMADELIMITED 0x0002
175 #define HDR_SEMIDELIMITED 0x0004
177 typedef struct
179 LPWSTR lpszField;
180 LPWSTR lpszValue;
181 WORD wFlags;
182 WORD wCount;
183 } HTTPHEADERW, *LPHTTPHEADERW;
186 struct HttpAuthInfo;
188 typedef struct
190 WININETHANDLEHEADER hdr;
191 WININETHTTPSESSIONW *lpHttpSession;
192 LPWSTR lpszPath;
193 LPWSTR lpszVerb;
194 LPWSTR lpszRawHeaders;
195 WININET_NETCONNECTION netConnection;
196 LPWSTR lpszVersion;
197 LPWSTR lpszStatusText;
198 DWORD dwContentLength; /* total number of bytes to be read */
199 DWORD dwContentRead; /* bytes of the content read so far */
200 HTTPHEADERW *pCustHeaders;
201 DWORD nCustHeaders;
202 HANDLE hCacheFile;
203 LPWSTR lpszCacheFile;
204 struct HttpAuthInfo *pAuthInfo;
205 struct HttpAuthInfo *pProxyAuthInfo;
206 } WININETHTTPREQW, *LPWININETHTTPREQW;
210 struct WORKREQ_FTPPUTFILEW
212 LPWSTR lpszLocalFile;
213 LPWSTR lpszNewRemoteFile;
214 DWORD dwFlags;
215 DWORD_PTR dwContext;
218 struct WORKREQ_FTPSETCURRENTDIRECTORYW
220 LPWSTR lpszDirectory;
223 struct WORKREQ_FTPCREATEDIRECTORYW
225 LPWSTR lpszDirectory;
228 struct WORKREQ_FTPFINDFIRSTFILEW
230 LPWSTR lpszSearchFile;
231 LPWIN32_FIND_DATAW lpFindFileData;
232 DWORD dwFlags;
233 DWORD_PTR dwContext;
236 struct WORKREQ_FTPGETCURRENTDIRECTORYW
238 LPWSTR lpszDirectory;
239 DWORD *lpdwDirectory;
242 struct WORKREQ_FTPOPENFILEW
244 LPWSTR lpszFilename;
245 DWORD dwAccess;
246 DWORD dwFlags;
247 DWORD_PTR dwContext;
250 struct WORKREQ_FTPGETFILEW
252 LPWSTR lpszRemoteFile;
253 LPWSTR lpszNewFile;
254 BOOL fFailIfExists;
255 DWORD dwLocalFlagsAttribute;
256 DWORD dwFlags;
257 DWORD_PTR dwContext;
260 struct WORKREQ_FTPDELETEFILEW
262 LPWSTR lpszFilename;
265 struct WORKREQ_FTPREMOVEDIRECTORYW
267 LPWSTR lpszDirectory;
270 struct WORKREQ_FTPRENAMEFILEW
272 LPWSTR lpszSrcFile;
273 LPWSTR lpszDestFile;
276 struct WORKREQ_FTPFINDNEXTW
278 LPWIN32_FIND_DATAW lpFindFileData;
281 struct WORKREQ_HTTPSENDREQUESTW
283 LPWSTR lpszHeader;
284 DWORD dwHeaderLength;
285 LPVOID lpOptional;
286 DWORD dwOptionalLength;
287 DWORD dwContentLength;
288 BOOL bEndRequest;
291 struct WORKREQ_SENDCALLBACK
293 DWORD_PTR dwContext;
294 DWORD dwInternetStatus;
295 LPVOID lpvStatusInfo;
296 DWORD dwStatusInfoLength;
299 struct WORKREQ_INTERNETOPENURLW
301 HINTERNET hInternet;
302 LPWSTR lpszUrl;
303 LPWSTR lpszHeaders;
304 DWORD dwHeadersLength;
305 DWORD dwFlags;
306 DWORD_PTR dwContext;
309 struct WORKREQ_INTERNETREADFILEEXA
311 LPINTERNET_BUFFERSA lpBuffersOut;
314 typedef struct WORKREQ
316 void (*asyncproc)(struct WORKREQ*);
317 WININETHANDLEHEADER *hdr;
319 union {
320 struct WORKREQ_FTPPUTFILEW FtpPutFileW;
321 struct WORKREQ_FTPSETCURRENTDIRECTORYW FtpSetCurrentDirectoryW;
322 struct WORKREQ_FTPCREATEDIRECTORYW FtpCreateDirectoryW;
323 struct WORKREQ_FTPFINDFIRSTFILEW FtpFindFirstFileW;
324 struct WORKREQ_FTPGETCURRENTDIRECTORYW FtpGetCurrentDirectoryW;
325 struct WORKREQ_FTPOPENFILEW FtpOpenFileW;
326 struct WORKREQ_FTPGETFILEW FtpGetFileW;
327 struct WORKREQ_FTPDELETEFILEW FtpDeleteFileW;
328 struct WORKREQ_FTPREMOVEDIRECTORYW FtpRemoveDirectoryW;
329 struct WORKREQ_FTPRENAMEFILEW FtpRenameFileW;
330 struct WORKREQ_FTPFINDNEXTW FtpFindNextW;
331 struct WORKREQ_HTTPSENDREQUESTW HttpSendRequestW;
332 struct WORKREQ_SENDCALLBACK SendCallback;
333 struct WORKREQ_INTERNETOPENURLW InternetOpenUrlW;
334 struct WORKREQ_INTERNETREADFILEEXA InternetReadFileExA;
335 } u;
337 } WORKREQUEST, *LPWORKREQUEST;
339 HINTERNET WININET_AllocHandle( LPWININETHANDLEHEADER info );
340 LPWININETHANDLEHEADER WININET_GetObject( HINTERNET hinternet );
341 LPWININETHANDLEHEADER WININET_AddRef( LPWININETHANDLEHEADER info );
342 BOOL WININET_Release( LPWININETHANDLEHEADER info );
343 BOOL WININET_FreeHandle( HINTERNET hinternet );
345 DWORD INET_QueryOption(DWORD,void*,DWORD*,BOOL);
347 time_t ConvertTimeString(LPCWSTR asctime);
349 HINTERNET FTP_Connect(LPWININETAPPINFOW hIC, LPCWSTR lpszServerName,
350 INTERNET_PORT nServerPort, LPCWSTR lpszUserName,
351 LPCWSTR lpszPassword, DWORD dwFlags, DWORD_PTR dwContext,
352 DWORD dwInternalFlags);
354 HINTERNET HTTP_Connect(LPWININETAPPINFOW hIC, LPCWSTR lpszServerName,
355 INTERNET_PORT nServerPort, LPCWSTR lpszUserName,
356 LPCWSTR lpszPassword, DWORD dwFlags, DWORD_PTR dwContext,
357 DWORD dwInternalFlags);
359 BOOL GetAddress(LPCWSTR lpszServerName, INTERNET_PORT nServerPort,
360 struct sockaddr_in *psa);
362 void INTERNET_SetLastError(DWORD dwError);
363 DWORD INTERNET_GetLastError(void);
364 BOOL INTERNET_AsyncCall(LPWORKREQUEST lpWorkRequest);
365 LPSTR INTERNET_GetResponseBuffer(void);
366 LPSTR INTERNET_GetNextLine(INT nSocket, LPDWORD dwLen);
368 BOOLAPI HTTP_HttpSendRequestW(LPWININETHTTPREQW lpwhr, LPCWSTR lpszHeaders,
369 DWORD dwHeaderLength, LPVOID lpOptional, DWORD dwOptionalLength,
370 DWORD dwContentLength, BOOL bEndRequest);
371 INTERNETAPI HINTERNET WINAPI HTTP_HttpOpenRequestW(LPWININETHTTPSESSIONW lpwhs,
372 LPCWSTR lpszVerb, LPCWSTR lpszObjectName, LPCWSTR lpszVersion,
373 LPCWSTR lpszReferrer , LPCWSTR *lpszAcceptTypes,
374 DWORD dwFlags, DWORD_PTR dwContext);
375 BOOL HTTP_FinishedReading(LPWININETHTTPREQW lpwhr);
377 VOID SendAsyncCallback(LPWININETHANDLEHEADER hdr, DWORD_PTR dwContext,
378 DWORD dwInternetStatus, LPVOID lpvStatusInfo,
379 DWORD dwStatusInfoLength);
381 VOID INTERNET_SendCallback(LPWININETHANDLEHEADER hdr, DWORD_PTR dwContext,
382 DWORD dwInternetStatus, LPVOID lpvStatusInfo,
383 DWORD dwStatusInfoLength);
385 LPHTTPHEADERW HTTP_GetHeader(LPWININETHTTPREQW lpwhr, LPCWSTR header);
387 BOOL NETCON_connected(WININET_NETCONNECTION *connection);
388 BOOL NETCON_init(WININET_NETCONNECTION *connnection, BOOL useSSL);
389 BOOL NETCON_create(WININET_NETCONNECTION *connection, int domain,
390 int type, int protocol);
391 BOOL NETCON_close(WININET_NETCONNECTION *connection);
392 BOOL NETCON_connect(WININET_NETCONNECTION *connection, const struct sockaddr *serv_addr,
393 unsigned int addrlen);
394 BOOL NETCON_secure_connect(WININET_NETCONNECTION *connection, LPCWSTR hostname);
395 BOOL NETCON_send(WININET_NETCONNECTION *connection, const void *msg, size_t len, int flags,
396 int *sent /* out */);
397 BOOL NETCON_recv(WININET_NETCONNECTION *connection, void *buf, size_t len, int flags,
398 int *recvd /* out */);
399 BOOL NETCON_query_data_available(WININET_NETCONNECTION *connection, DWORD *available);
400 BOOL NETCON_getNextLine(WININET_NETCONNECTION *connection, LPSTR lpszBuffer, LPDWORD dwBuffer);
401 LPCVOID NETCON_GetCert(WININET_NETCONNECTION *connection);
402 DWORD NETCON_set_timeout(WININET_NETCONNECTION *connection, BOOL send, int value);
404 extern void URLCacheContainers_CreateDefaults(void);
405 extern void URLCacheContainers_DeleteAll(void);
407 #define MAX_REPLY_LEN 0x5B4
409 /* Used for debugging - maybe need to be shared in the Wine debugging code ? */
410 typedef struct
412 DWORD val;
413 const char* name;
414 } wininet_flag_info;
416 #endif /* _WINE_INTERNET_H_ */