ieframe: Return S_FALSE in IWebBrowser2::get_Document when returning NULL.
[wine.git] / include / wine / http.h
blobd8039dea0716ae9c4d3aafaa04f41e4ca124f8e5
1 /*
2 * Copyright 2019 Zebediah Figura
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 __WINE_WINE_HTTP_H
20 #define __WINE_WINE_HTTP_H
22 #include <windef.h>
23 #include <http.h>
24 #include <winioctl.h>
26 #define IOCTL_HTTP_ADD_URL CTL_CODE(FILE_DEVICE_UNKNOWN, 0x800, METHOD_BUFFERED, 0)
27 #define IOCTL_HTTP_REMOVE_URL CTL_CODE(FILE_DEVICE_UNKNOWN, 0x801, METHOD_BUFFERED, 0)
28 #define IOCTL_HTTP_RECEIVE_REQUEST CTL_CODE(FILE_DEVICE_UNKNOWN, 0x802, METHOD_BUFFERED, 0)
29 #define IOCTL_HTTP_SEND_RESPONSE CTL_CODE(FILE_DEVICE_UNKNOWN, 0x803, METHOD_BUFFERED, 0)
30 #define IOCTL_HTTP_RECEIVE_BODY CTL_CODE(FILE_DEVICE_UNKNOWN, 0x804, METHOD_BUFFERED, 0)
32 struct http_add_url_params
34 HTTP_URL_CONTEXT context;
35 char url[1];
38 struct http_receive_request_params
40 ULONGLONG addr; /* user-mode buffer address */
41 HTTP_REQUEST_ID id;
42 ULONG flags;
43 ULONG bits;
46 struct http_response
48 HTTP_REQUEST_ID id;
49 int len;
50 char buffer[1];
53 struct http_receive_body_params
55 HTTP_REQUEST_ID id;
56 ULONG bits;
59 #endif