Reactos
1/*
2 * Copyright 2019 Zebediah Figura
3 *
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.
8 *
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.
13 *
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
17 */
18
19#ifndef __WINE_WINE_HTTP_H
20#define __WINE_WINE_HTTP_H
21
22#include <windef.h>
23#include <http.h>
24#include <winioctl.h>
25
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
31struct http_add_url_params
32{
33 HTTP_URL_CONTEXT context;
34 char url[1];
35};
36
37struct http_receive_request_params
38{
39 ULONGLONG addr; /* user-mode buffer address */
40 HTTP_REQUEST_ID id;
41 ULONG flags;
42 ULONG bits;
43};
44
45struct http_response
46{
47 HTTP_REQUEST_ID id;
48 int len;
49 char buffer[1];
50};
51
52#endif