wined3d: Use the correct texture limit.
[wine] / dlls / winhttp / winhttp_private.h
1 /*
2  * Copyright 2008 Hans Leidekker for CodeWeavers
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_WINHTTP_PRIVATE_H_
20 #define _WINE_WINHTTP_PRIVATE_H_
21
22 #ifndef __WINE_CONFIG_H
23 # error You must include config.h to use this header
24 #endif
25
26 #include "wine/list.h"
27 #include "wine/unicode.h"
28
29 #ifdef HAVE_NETINET_IN_H
30 # include <netinet/in.h>
31 #endif
32 #ifdef HAVE_NETDB_H
33 # include <netdb.h>
34 #endif
35 #if defined(__MINGW32__) || defined (_MSC_VER)
36 # include <ws2tcpip.h>
37 #endif
38
39 typedef struct _object_header_t object_header_t;
40
41 typedef struct
42 {
43     void (*destroy)( object_header_t * );
44     BOOL (*query_option)( object_header_t *, DWORD, void *, DWORD *, BOOL );
45     BOOL (*set_option)( object_header_t *, DWORD, void *, DWORD );
46 } object_vtbl_t;
47
48 struct _object_header_t
49 {
50     DWORD type;
51     HINTERNET handle;
52     const object_vtbl_t *vtbl;
53     DWORD flags;
54     DWORD error;
55     DWORD_PTR context;
56     LONG refs;
57     WINHTTP_STATUS_CALLBACK callback;
58     DWORD notify_mask;
59     struct list entry;
60     struct list children;
61 };
62
63 typedef struct
64 {
65     object_header_t hdr;
66     LPWSTR agent;
67     DWORD access;
68     LPWSTR proxy_server;
69     LPWSTR proxy_bypass;
70     LPWSTR proxy_username;
71     LPWSTR proxy_password;
72 } session_t;
73
74 typedef struct
75 {
76     object_header_t hdr;
77     session_t *session;
78     LPWSTR hostname;    /* final destination of the request */
79     LPWSTR servername;  /* name of the server we directly connect to */
80     LPWSTR username;
81     LPWSTR password;
82     INTERNET_PORT hostport;
83     INTERNET_PORT serverport;
84     struct sockaddr_in sockaddr;
85 } connect_t;
86
87 typedef struct
88 {
89     int socket;
90     char *peek_msg;
91     char *peek_msg_mem;
92     size_t peek_len;
93 } netconn_t;
94
95 typedef struct
96 {
97     LPWSTR field;
98     LPWSTR value;
99     BOOL is_request; /* part of request headers? */
100 } header_t;
101
102 typedef struct
103 {
104     object_header_t hdr;
105     connect_t *connect;
106     LPWSTR verb;
107     LPWSTR path;
108     LPWSTR version;
109     LPWSTR raw_headers;
110     netconn_t netconn;
111     LPWSTR status_text;
112     DWORD content_length; /* total number of bytes to be read (per chunk) */
113     DWORD content_read;   /* bytes read so far */
114     header_t *headers;
115     DWORD num_headers;
116 } request_t;
117
118 object_header_t *addref_object( object_header_t * );
119 object_header_t *grab_object( HINTERNET );
120 void release_object( object_header_t * );
121 HINTERNET alloc_handle( object_header_t * );
122 BOOL free_handle( HINTERNET );
123
124 void set_last_error( DWORD );
125 void send_callback( object_header_t *, DWORD, LPVOID, DWORD );
126
127 static inline void *heap_alloc( SIZE_T size )
128 {
129     return HeapAlloc( GetProcessHeap(), 0, size );
130 }
131
132 static inline void *heap_alloc_zero( SIZE_T size )
133 {
134     return HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, size );
135 }
136
137 static inline void *heap_realloc( LPVOID mem, SIZE_T size )
138 {
139     return HeapReAlloc( GetProcessHeap(), 0, mem, size );
140 }
141
142 static inline void *heap_realloc_zero( LPVOID mem, SIZE_T size )
143 {
144     return HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, mem, size );
145 }
146
147 static inline BOOL heap_free( LPVOID mem )
148 {
149     return HeapFree( GetProcessHeap(), 0, mem );
150 }
151
152 static inline WCHAR *strdupW( const WCHAR *src )
153 {
154     WCHAR *dst;
155
156     if (!src) return NULL;
157     dst = heap_alloc( (strlenW( src ) + 1) * sizeof(WCHAR) );
158     if (dst) strcpyW( dst, src );
159     return dst;
160 }
161
162 #endif /* _WINE_WINHTTP_PRIVATE_H_ */