ReactOS 0.4.15-dev-7958-gcd0bb1a
http.h
Go to the documentation of this file.
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
32{
34 char url[1];
35};
36
38{
39 ULONGLONG addr; /* user-mode buffer address */
43};
44
46{
48 int len;
49 char buffer[1];
50};
51
52#endif
GLuint buffer
Definition: glext.h:5915
HTTP_OPAQUE_ID HTTP_REQUEST_ID
Definition: http.h:76
ULONGLONG HTTP_URL_CONTEXT
Definition: http.h:79
HTTP_URL_CONTEXT context
Definition: http.h:33
char url[1]
Definition: http.h:34
HTTP_REQUEST_ID id
Definition: http.h:40
HTTP_REQUEST_ID id
Definition: http.h:47
int len
Definition: http.h:48
uint32_t ULONG
Definition: typedefs.h:59
uint64_t ULONGLONG
Definition: typedefs.h:67