ole32: Initial implementation of transaction locking.
[wine/multimedia.git] / dlls / mshtml / binding.h
blob63ac8828327ffae55ff81d2b75115a26d554e0ae
1 /*
2 * Copyright 2011 Jacek Caban for CodeWeavers
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 typedef struct nsWineURI nsWineURI;
21 /* Keep sync with request_method_strings in nsio.c */
22 typedef enum {
23 METHOD_GET,
24 METHOD_PUT,
25 METHOD_POST
26 } REQUEST_METHOD;
28 typedef struct {
29 nsIHttpChannel nsIHttpChannel_iface;
30 nsIUploadChannel nsIUploadChannel_iface;
31 nsIHttpChannelInternal nsIHttpChannelInternal_iface;
33 LONG ref;
35 nsWineURI *uri;
36 nsIInputStream *post_data_stream;
37 BOOL post_data_contains_headers;
38 nsILoadGroup *load_group;
39 nsIInterfaceRequestor *notif_callback;
40 nsISupports *owner;
41 nsLoadFlags load_flags;
42 nsIURI *original_uri;
43 nsIURI *referrer;
44 char *content_type;
45 char *charset;
46 UINT32 response_status;
47 REQUEST_METHOD request_method;
48 struct list response_headers;
49 struct list request_headers;
50 } nsChannel;
52 typedef struct {
53 WCHAR *headers;
54 HGLOBAL post_data;
55 ULONG post_data_len;
56 } request_data_t;
58 typedef struct BSCallbackVtbl BSCallbackVtbl;
60 struct BSCallback {
61 IBindStatusCallback IBindStatusCallback_iface;
62 IServiceProvider IServiceProvider_iface;
63 IHttpNegotiate2 IHttpNegotiate2_iface;
64 IInternetBindInfo IInternetBindInfo_iface;
66 const BSCallbackVtbl *vtbl;
68 LONG ref;
70 request_data_t request_data;
71 ULONG readed;
72 DWORD bindf;
73 BOOL bindinfo_ready;
74 int bom;
76 IMoniker *mon;
77 IBinding *binding;
79 HTMLInnerWindow *window;
81 struct list entry;
84 typedef struct nsProtocolStream nsProtocolStream;
86 struct nsChannelBSC {
87 BSCallback bsc;
89 nsChannel *nschannel;
90 nsIStreamListener *nslistener;
91 nsISupports *nscontext;
92 BOOL is_js;
93 BOOL is_doc_channel;
94 BOOL response_processed;
96 nsProtocolStream *nsstream;
99 typedef struct {
100 struct list entry;
101 WCHAR *header;
102 WCHAR *data;
103 } http_header_t;
105 #define BINDING_NAVIGATED 0x0001
106 #define BINDING_REPLACE 0x0002
107 #define BINDING_FROMHIST 0x0004
108 #define BINDING_REFRESH 0x0008
109 #define BINDING_SUBMIT 0x0010
110 #define BINDING_NOFRAG 0x0020
112 HRESULT set_http_header(struct list*,const WCHAR*,int,const WCHAR*,int) DECLSPEC_HIDDEN;
113 HRESULT create_redirect_nschannel(const WCHAR*,nsChannel*,nsChannel**) DECLSPEC_HIDDEN;
115 nsresult on_start_uri_open(NSContainer*,nsIURI*,cpp_bool*) DECLSPEC_HIDDEN;
116 HRESULT hlink_frame_navigate(HTMLDocument*,LPCWSTR,nsChannel*,DWORD,BOOL*) DECLSPEC_HIDDEN;
117 HRESULT create_doc_uri(HTMLOuterWindow*,IUri*,nsWineURI**) DECLSPEC_HIDDEN;
118 HRESULT load_nsuri(HTMLOuterWindow*,nsWineURI*,nsChannelBSC*,DWORD) DECLSPEC_HIDDEN;
119 HRESULT set_moniker(HTMLOuterWindow*,IMoniker*,IUri*,IBindCtx*,nsChannelBSC*,BOOL) DECLSPEC_HIDDEN;
120 void prepare_for_binding(HTMLDocument*,IMoniker*,DWORD) DECLSPEC_HIDDEN;
121 HRESULT super_navigate(HTMLOuterWindow*,IUri*,DWORD,const WCHAR*,BYTE*,DWORD) DECLSPEC_HIDDEN;
122 HRESULT load_uri(HTMLOuterWindow*,IUri*,DWORD) DECLSPEC_HIDDEN;
123 HRESULT navigate_new_window(HTMLOuterWindow*,IUri*,const WCHAR*,IHTMLWindow2**) DECLSPEC_HIDDEN;
124 HRESULT navigate_url(HTMLOuterWindow*,const WCHAR*,IUri*,DWORD) DECLSPEC_HIDDEN;
125 HRESULT submit_form(HTMLOuterWindow*,IUri*,nsIInputStream*) DECLSPEC_HIDDEN;
127 HRESULT create_channelbsc(IMoniker*,const WCHAR*,BYTE*,DWORD,BOOL,nsChannelBSC**) DECLSPEC_HIDDEN;
128 HRESULT channelbsc_load_stream(HTMLInnerWindow*,IMoniker*,IStream*) DECLSPEC_HIDDEN;
129 void channelbsc_set_channel(nsChannelBSC*,nsChannel*,nsIStreamListener*,nsISupports*) DECLSPEC_HIDDEN;
130 IUri *nsuri_get_uri(nsWineURI*) DECLSPEC_HIDDEN;
132 HRESULT create_relative_uri(HTMLOuterWindow*,const WCHAR*,IUri**) DECLSPEC_HIDDEN;
133 HRESULT create_uri(const WCHAR*,DWORD,IUri**) DECLSPEC_HIDDEN;
134 IUri *get_uri_nofrag(IUri*) DECLSPEC_HIDDEN;
136 void set_current_mon(HTMLOuterWindow*,IMoniker*,DWORD) DECLSPEC_HIDDEN;
137 void set_current_uri(HTMLOuterWindow*,IUri*) DECLSPEC_HIDDEN;
139 HRESULT bind_mon_to_wstr(HTMLInnerWindow*,IMoniker*,WCHAR**) DECLSPEC_HIDDEN;