mshtml: Use custom get_readyState implementations for object and frame elements.
[wine] / dlls / mshtml / mshtml_private.h
1 /*
2  * Copyright 2005-2009 Jacek Caban 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 #include "wingdi.h"
20 #include "docobj.h"
21 #include "comcat.h"
22 #include "mshtml.h"
23 #include "mshtmhst.h"
24 #include "hlink.h"
25 #include "perhist.h"
26 #include "dispex.h"
27
28 #include "wine/list.h"
29 #include "wine/unicode.h"
30
31 #ifdef INIT_GUID
32 #include "initguid.h"
33 #endif
34
35 #include "nsiface.h"
36
37 #define NS_ERROR_GENERATE_FAILURE(module,code) \
38     ((nsresult) (((PRUint32)(1<<31)) | ((PRUint32)(module+0x45)<<16) | ((PRUint32)(code))))
39
40 #define NS_OK                     ((nsresult)0x00000000L)
41 #define NS_ERROR_FAILURE          ((nsresult)0x80004005L)
42 #define NS_ERROR_OUT_OF_MEMORY    ((nsresult)0x8007000EL)
43 #define NS_NOINTERFACE            ((nsresult)0x80004002L)
44 #define NS_ERROR_NOT_IMPLEMENTED  ((nsresult)0x80004001L)
45 #define NS_ERROR_NOT_AVAILABLE    ((nsresult)0x80040111L)
46 #define NS_ERROR_INVALID_ARG      ((nsresult)0x80070057L) 
47 #define NS_ERROR_UNEXPECTED       ((nsresult)0x8000ffffL)
48
49 #define NS_ERROR_MODULE_NETWORK    6
50
51 #define NS_BINDING_ABORTED         NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 2)
52 #define NS_ERROR_UNKNOWN_PROTOCOL  NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 18)
53
54 #define NS_FAILED(res) ((res) & 0x80000000)
55 #define NS_SUCCEEDED(res) (!NS_FAILED(res))
56
57 #define NSAPI WINAPI
58
59 #define MSHTML_E_NODOC    0x800a025c
60
61 typedef struct HTMLDOMNode HTMLDOMNode;
62 typedef struct ConnectionPoint ConnectionPoint;
63 typedef struct BSCallback BSCallback;
64 typedef struct event_target_t event_target_t;
65
66 #define TID_LIST \
67     XIID(NULL) \
68     XDIID(DispCEventObj) \
69     XDIID(DispCPlugins) \
70     XDIID(DispDOMChildrenCollection) \
71     XDIID(DispHTMLAnchorElement) \
72     XDIID(DispHTMLBody) \
73     XDIID(DispHTMLCommentElement) \
74     XDIID(DispHTMLCurrentStyle) \
75     XDIID(DispHTMLDocument) \
76     XDIID(DispHTMLDOMTextNode) \
77     XDIID(DispHTMLElementCollection) \
78     XDIID(DispHTMLEmbed) \
79     XDIID(DispHTMLFormElement) \
80     XDIID(DispHTMLGenericElement) \
81     XDIID(DispHTMLFrameElement) \
82     XDIID(DispHTMLIFrame) \
83     XDIID(DispHTMLImg) \
84     XDIID(DispHTMLInputElement) \
85     XDIID(DispHTMLLocation) \
86     XDIID(DispHTMLNavigator) \
87     XDIID(DispHTMLObjectElement) \
88     XDIID(DispHTMLOptionElement) \
89     XDIID(DispHTMLScreen) \
90     XDIID(DispHTMLScriptElement) \
91     XDIID(DispHTMLSelectElement) \
92     XDIID(DispHTMLStyle) \
93     XDIID(DispHTMLStyleElement) \
94     XDIID(DispHTMLStyleSheetsCollection) \
95     XDIID(DispHTMLTable) \
96     XDIID(DispHTMLTableRow) \
97     XDIID(DispHTMLTextAreaElement) \
98     XDIID(DispHTMLUnknownElement) \
99     XDIID(DispHTMLWindow2) \
100     XDIID(HTMLDocumentEvents) \
101     XIID(IHTMLAnchorElement) \
102     XIID(IHTMLBodyElement) \
103     XIID(IHTMLBodyElement2) \
104     XIID(IHTMLCommentElement) \
105     XIID(IHTMLCurrentStyle) \
106     XIID(IHTMLCurrentStyle2) \
107     XIID(IHTMLCurrentStyle3) \
108     XIID(IHTMLCurrentStyle4) \
109     XIID(IHTMLDocument2) \
110     XIID(IHTMLDocument3) \
111     XIID(IHTMLDocument4) \
112     XIID(IHTMLDocument5) \
113     XIID(IHTMLDOMChildrenCollection) \
114     XIID(IHTMLDOMNode) \
115     XIID(IHTMLDOMNode2) \
116     XIID(IHTMLDOMTextNode) \
117     XIID(IHTMLElement) \
118     XIID(IHTMLElement2) \
119     XIID(IHTMLElement3) \
120     XIID(IHTMLElement4) \
121     XIID(IHTMLElementCollection) \
122     XIID(IHTMLEmbedElement) \
123     XIID(IHTMLEventObj) \
124     XIID(IHTMLFiltersCollection) \
125     XIID(IHTMLFormElement) \
126     XIID(IHTMLFrameBase) \
127     XIID(IHTMLFrameBase2) \
128     XIID(IHTMLFrameElement3) \
129     XIID(IHTMLGenericElement) \
130     XIID(IHTMLIFrameElement) \
131     XIID(IHTMLImageElementFactory) \
132     XIID(IHTMLImgElement) \
133     XIID(IHTMLInputElement) \
134     XIID(IHTMLLocation) \
135     XIID(IHTMLObjectElement) \
136     XIID(IHTMLOptionElement) \
137     XIID(IHTMLPluginsCollection) \
138     XIID(IHTMLRect) \
139     XIID(IHTMLScreen) \
140     XIID(IHTMLScriptElement) \
141     XIID(IHTMLSelectElement) \
142     XIID(IHTMLStyle) \
143     XIID(IHTMLStyle2) \
144     XIID(IHTMLStyle3) \
145     XIID(IHTMLStyle4) \
146     XIID(IHTMLStyleElement) \
147     XIID(IHTMLStyleSheetsCollection) \
148     XIID(IHTMLTable) \
149     XIID(IHTMLTableRow) \
150     XIID(IHTMLTextAreaElement) \
151     XIID(IHTMLTextContainer) \
152     XIID(IHTMLUniqueName) \
153     XIID(IHTMLWindow2) \
154     XIID(IHTMLWindow3) \
155     XIID(IHTMLWindow4) \
156     XIID(IOmNavigator)
157
158 typedef enum {
159 #define XIID(iface) iface ## _tid,
160 #define XDIID(iface) iface ## _tid,
161 TID_LIST
162 #undef XIID
163 #undef XDIID
164     LAST_tid
165 } tid_t;
166
167 typedef struct dispex_data_t dispex_data_t;
168 typedef struct dispex_dynamic_data_t dispex_dynamic_data_t;
169
170 #define MSHTML_DISPID_CUSTOM_MIN 0x60000000
171 #define MSHTML_DISPID_CUSTOM_MAX 0x6fffffff
172 #define MSHTML_CUSTOM_DISPID_CNT (MSHTML_DISPID_CUSTOM_MAX-MSHTML_DISPID_CUSTOM_MIN)
173
174 typedef struct {
175     HRESULT (*value)(IUnknown*,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
176     HRESULT (*get_dispid)(IUnknown*,BSTR,DWORD,DISPID*);
177     HRESULT (*invoke)(IUnknown*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
178 } dispex_static_data_vtbl_t;
179
180 typedef struct {
181     const dispex_static_data_vtbl_t *vtbl;
182     const tid_t disp_tid;
183     dispex_data_t *data;
184     const tid_t* const iface_tids;
185 } dispex_static_data_t;
186
187 typedef struct {
188     const IDispatchExVtbl  *lpIDispatchExVtbl;
189
190     IUnknown *outer;
191
192     dispex_static_data_t *data;
193     dispex_dynamic_data_t *dynamic_data;
194 } DispatchEx;
195
196 void init_dispex(DispatchEx*,IUnknown*,dispex_static_data_t*);
197 void release_dispex(DispatchEx*);
198 BOOL dispex_query_interface(DispatchEx*,REFIID,void**);
199 HRESULT dispex_get_dprop_ref(DispatchEx*,const WCHAR*,BOOL,VARIANT**);
200 HRESULT get_dispids(tid_t,DWORD*,DISPID**);
201 HRESULT remove_prop(DispatchEx*,BSTR,VARIANT_BOOL*);
202
203 typedef struct HTMLWindow HTMLWindow;
204 typedef struct HTMLDocumentNode HTMLDocumentNode;
205 typedef struct HTMLDocumentObj HTMLDocumentObj;
206 typedef struct HTMLFrameBase HTMLFrameBase;
207 typedef struct NSContainer NSContainer;
208
209 typedef enum {
210     SCRIPTMODE_GECKO,
211     SCRIPTMODE_ACTIVESCRIPT
212 } SCRIPTMODE;
213
214 typedef struct ScriptHost ScriptHost;
215
216 typedef enum {
217     GLOBAL_SCRIPTVAR,
218     GLOBAL_ELEMENTVAR
219 } global_prop_type_t;
220
221 typedef struct {
222     global_prop_type_t type;
223     WCHAR *name;
224     ScriptHost *script_host;
225     DISPID id;
226 } global_prop_t;
227
228 typedef struct {
229     const IHTMLOptionElementFactoryVtbl *lpHTMLOptionElementFactoryVtbl;
230
231     LONG ref;
232
233     HTMLWindow *window;
234 } HTMLOptionElementFactory;
235
236 typedef struct {
237     DispatchEx dispex;
238     const IHTMLImageElementFactoryVtbl *lpHTMLImageElementFactoryVtbl;
239
240     LONG ref;
241
242     HTMLWindow *window;
243 } HTMLImageElementFactory;
244
245 struct HTMLLocation {
246     DispatchEx dispex;
247     const IHTMLLocationVtbl *lpHTMLLocationVtbl;
248
249     LONG ref;
250
251     HTMLWindow *window;
252 };
253
254 typedef struct {
255     HTMLWindow *window;
256     LONG ref;
257 }  windowref_t;
258
259 typedef struct nsChannelBSC nsChannelBSC;
260
261 struct HTMLWindow {
262     DispatchEx dispex;
263     const IHTMLWindow2Vtbl *lpHTMLWindow2Vtbl;
264     const IHTMLWindow3Vtbl *lpHTMLWindow3Vtbl;
265     const IHTMLWindow4Vtbl *lpHTMLWindow4Vtbl;
266     const IHTMLPrivateWindowVtbl *lpIHTMLPrivateWindowVtbl;
267     const IDispatchExVtbl         *lpIDispatchExVtbl;
268     const IServiceProviderVtbl    *lpServiceProviderVtbl;
269
270     LONG ref;
271
272     windowref_t *window_ref;
273     LONG task_magic;
274
275     HTMLDocumentNode *doc;
276     HTMLDocumentObj *doc_obj;
277     nsIDOMWindow *nswindow;
278     HTMLWindow *parent;
279     HTMLFrameBase *frame_element;
280     READYSTATE readystate;
281
282     nsChannelBSC *bscallback;
283     IMoniker *mon;
284     LPOLESTR url;
285
286     IHTMLEventObj *event;
287
288     SCRIPTMODE scriptmode;
289     struct list script_hosts;
290
291     HTMLOptionElementFactory *option_factory;
292     HTMLImageElementFactory *image_factory;
293     HTMLLocation *location;
294     IHTMLScreen *screen;
295
296     global_prop_t *global_props;
297     DWORD global_prop_cnt;
298     DWORD global_prop_size;
299
300     struct list children;
301     struct list sibling_entry;
302     struct list entry;
303 };
304
305 typedef enum {
306     UNKNOWN_USERMODE,
307     BROWSEMODE,
308     EDITMODE        
309 } USERMODE;
310
311 typedef struct _cp_static_data_t {
312     tid_t tid;
313     void (*on_advise)(IUnknown*,struct _cp_static_data_t*);
314     DWORD id_cnt;
315     DISPID *ids;
316 } cp_static_data_t;
317
318 typedef struct ConnectionPointContainer {
319     const IConnectionPointContainerVtbl  *lpConnectionPointContainerVtbl;
320
321     ConnectionPoint *cp_list;
322     IUnknown *outer;
323     struct ConnectionPointContainer *forward_container;
324 } ConnectionPointContainer;
325
326 struct ConnectionPoint {
327     const IConnectionPointVtbl *lpConnectionPointVtbl;
328
329     ConnectionPointContainer *container;
330
331     union {
332         IUnknown *unk;
333         IDispatch *disp;
334         IPropertyNotifySink *propnotif;
335     } *sinks;
336     DWORD sinks_size;
337
338     const IID *iid;
339     cp_static_data_t *data;
340
341     ConnectionPoint *next;
342 };
343
344 struct HTMLDocument {
345     const IHTMLDocument2Vtbl              *lpHTMLDocument2Vtbl;
346     const IHTMLDocument3Vtbl              *lpHTMLDocument3Vtbl;
347     const IHTMLDocument4Vtbl              *lpHTMLDocument4Vtbl;
348     const IHTMLDocument5Vtbl              *lpHTMLDocument5Vtbl;
349     const IHTMLDocument6Vtbl              *lpHTMLDocument6Vtbl;
350     const IPersistMonikerVtbl             *lpPersistMonikerVtbl;
351     const IPersistFileVtbl                *lpPersistFileVtbl;
352     const IPersistHistoryVtbl             *lpPersistHistoryVtbl;
353     const IMonikerPropVtbl                *lpMonikerPropVtbl;
354     const IOleObjectVtbl                  *lpOleObjectVtbl;
355     const IOleDocumentVtbl                *lpOleDocumentVtbl;
356     const IOleDocumentViewVtbl            *lpOleDocumentViewVtbl;
357     const IOleInPlaceActiveObjectVtbl     *lpOleInPlaceActiveObjectVtbl;
358     const IViewObjectExVtbl               *lpViewObjectExVtbl;
359     const IOleInPlaceObjectWindowlessVtbl *lpOleInPlaceObjectWindowlessVtbl;
360     const IServiceProviderVtbl            *lpServiceProviderVtbl;
361     const IOleCommandTargetVtbl           *lpOleCommandTargetVtbl;
362     const IOleControlVtbl                 *lpOleControlVtbl;
363     const IHlinkTargetVtbl                *lpHlinkTargetVtbl;
364     const IPersistStreamInitVtbl          *lpPersistStreamInitVtbl;
365     const IDispatchExVtbl                 *lpIDispatchExVtbl;
366     const ISupportErrorInfoVtbl           *lpSupportErrorInfoVtbl;
367     const IObjectWithSiteVtbl             *lpObjectWithSiteVtbl;
368
369     IUnknown *unk_impl;
370     IDispatchEx *dispex;
371
372     HTMLDocumentObj *doc_obj;
373     HTMLDocumentNode *doc_node;
374
375     HTMLWindow *window;
376
377     LONG task_magic;
378
379     ConnectionPointContainer cp_container;
380     ConnectionPoint cp_htmldocevents;
381     ConnectionPoint cp_htmldocevents2;
382     ConnectionPoint cp_propnotif;
383     ConnectionPoint cp_dispatch;
384
385     IOleAdviseHolder *advise_holder;
386 };
387
388 static inline HRESULT htmldoc_query_interface(HTMLDocument *This, REFIID riid, void **ppv)
389 {
390     return IUnknown_QueryInterface(This->unk_impl, riid, ppv);
391 }
392
393 static inline ULONG htmldoc_addref(HTMLDocument *This)
394 {
395     return IUnknown_AddRef(This->unk_impl);
396 }
397
398 static inline ULONG htmldoc_release(HTMLDocument *This)
399 {
400     return IUnknown_Release(This->unk_impl);
401 }
402
403 struct HTMLDocumentObj {
404     HTMLDocument basedoc;
405     DispatchEx dispex;
406     const ICustomDocVtbl  *lpCustomDocVtbl;
407
408     LONG ref;
409
410     NSContainer *nscontainer;
411
412     IOleClientSite *client;
413     IDocHostUIHandler *hostui;
414     IOleInPlaceSite *ipsite;
415     IOleInPlaceFrame *frame;
416     IOleInPlaceUIWindow *ip_window;
417     IAdviseSink *view_sink;
418
419     DOCHOSTUIINFO hostinfo;
420
421     IOleUndoManager *undomgr;
422
423     HWND hwnd;
424     HWND tooltips_hwnd;
425
426     BOOL request_uiactivate;
427     BOOL in_place_active;
428     BOOL ui_active;
429     BOOL window_active;
430     BOOL hostui_setup;
431     BOOL container_locked;
432     BOOL focus;
433     INT download_state;
434
435     USERMODE usermode;
436     LPWSTR mime;
437
438     DWORD update;
439 };
440
441 struct NSContainer {
442     const nsIWebBrowserChromeVtbl       *lpWebBrowserChromeVtbl;
443     const nsIContextMenuListenerVtbl    *lpContextMenuListenerVtbl;
444     const nsIURIContentListenerVtbl     *lpURIContentListenerVtbl;
445     const nsIEmbeddingSiteWindowVtbl    *lpEmbeddingSiteWindowVtbl;
446     const nsITooltipListenerVtbl        *lpTooltipListenerVtbl;
447     const nsIInterfaceRequestorVtbl     *lpInterfaceRequestorVtbl;
448     const nsIWeakReferenceVtbl          *lpWeakReferenceVtbl;
449     const nsISupportsWeakReferenceVtbl  *lpSupportsWeakReferenceVtbl;
450
451     nsIWebBrowser *webbrowser;
452     nsIWebNavigation *navigation;
453     nsIBaseWindow *window;
454     nsIWebBrowserFocus *focus;
455
456     nsIEditor *editor;
457     nsIController *editor_controller;
458
459     LONG ref;
460
461     NSContainer *parent;
462     HTMLDocumentObj *doc;
463
464     nsIURIContentListener *content_listener;
465
466     HWND hwnd;
467 };
468
469 typedef struct nsWineURI nsWineURI;
470
471 HRESULT set_wine_url(nsWineURI*,LPCWSTR);
472 nsresult on_start_uri_open(NSContainer*,nsIURI*,PRBool*);
473
474 /* Keep sync with request_method_strings in nsio.c */
475 typedef enum {
476     METHOD_GET,
477     METHOD_PUT,
478     METHOD_POST
479 } REQUEST_METHOD;
480
481 typedef struct {
482     const nsIHttpChannelVtbl *lpHttpChannelVtbl;
483     const nsIUploadChannelVtbl *lpUploadChannelVtbl;
484     const nsIHttpChannelInternalVtbl *lpIHttpChannelInternalVtbl;
485
486     LONG ref;
487
488     nsWineURI *uri;
489     nsIInputStream *post_data_stream;
490     nsILoadGroup *load_group;
491     nsIInterfaceRequestor *notif_callback;
492     nsISupports *owner;
493     nsLoadFlags load_flags;
494     nsIURI *original_uri;
495     nsIURI *referrer;
496     char *content_type;
497     char *charset;
498     PRUint32 response_status;
499     REQUEST_METHOD request_method;
500     struct list response_headers;
501     struct list request_headers;
502     UINT url_scheme;
503 } nsChannel;
504
505 typedef struct {
506     struct list entry;
507     WCHAR *header;
508     WCHAR *data;
509 } http_header_t;
510
511 HRESULT set_http_header(struct list*,const WCHAR*,int,const WCHAR*,int);
512
513 typedef struct {
514     HRESULT (*qi)(HTMLDOMNode*,REFIID,void**);
515     void (*destructor)(HTMLDOMNode*);
516     HRESULT (*clone)(HTMLDOMNode*,nsIDOMNode*,HTMLDOMNode**);
517     event_target_t **(*get_event_target)(HTMLDOMNode*);
518     HRESULT (*call_event)(HTMLDOMNode*,DWORD,BOOL*);
519     HRESULT (*put_disabled)(HTMLDOMNode*,VARIANT_BOOL);
520     HRESULT (*get_disabled)(HTMLDOMNode*,VARIANT_BOOL*);
521     HRESULT (*get_document)(HTMLDOMNode*,IDispatch**);
522     HRESULT (*get_readystate)(HTMLDOMNode*,BSTR*);
523     HRESULT (*get_dispid)(HTMLDOMNode*,BSTR,DWORD,DISPID*);
524     HRESULT (*invoke)(HTMLDOMNode*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
525     HRESULT (*bind_to_tree)(HTMLDOMNode*);
526 } NodeImplVtbl;
527
528 struct HTMLDOMNode {
529     DispatchEx dispex;
530     const IHTMLDOMNodeVtbl   *lpHTMLDOMNodeVtbl;
531     const IHTMLDOMNode2Vtbl  *lpHTMLDOMNode2Vtbl;
532     const NodeImplVtbl *vtbl;
533
534     LONG ref;
535
536     nsIDOMNode *nsnode;
537     HTMLDocumentNode *doc;
538     event_target_t *event_target;
539     ConnectionPointContainer *cp_container;
540
541     HTMLDOMNode *next;
542 };
543
544 typedef struct {
545     HTMLDOMNode node;
546     ConnectionPointContainer cp_container;
547
548     const IHTMLElementVtbl   *lpHTMLElementVtbl;
549     const IHTMLElement2Vtbl  *lpHTMLElement2Vtbl;
550     const IHTMLElement3Vtbl  *lpHTMLElement3Vtbl;
551
552     nsIDOMHTMLElement *nselem;
553 } HTMLElement;
554
555 #define HTMLELEMENT_TIDS    \
556     IHTMLDOMNode_tid,       \
557     IHTMLDOMNode2_tid,      \
558     IHTMLElement_tid,       \
559     IHTMLElement2_tid,      \
560     IHTMLElement3_tid,      \
561     IHTMLElement4_tid
562
563 typedef struct {
564     HTMLElement element;
565
566     const IHTMLTextContainerVtbl *lpHTMLTextContainerVtbl;
567
568     ConnectionPoint cp;
569 } HTMLTextContainer;
570
571 struct HTMLFrameBase {
572     HTMLElement element;
573
574     const IHTMLFrameBaseVtbl   *lpIHTMLFrameBaseVtbl;
575     const IHTMLFrameBase2Vtbl  *lpIHTMLFrameBase2Vtbl;
576
577     HTMLWindow *content_window;
578
579     nsIDOMHTMLFrameElement *nsframe;
580     nsIDOMHTMLIFrameElement *nsiframe;
581 };
582
583 typedef struct _mutation_queue_t {
584     DWORD type;
585     nsISupports *nsiface;
586
587     struct _mutation_queue_t *next;
588 } mutation_queue_t;
589
590 typedef struct nsDocumentEventListener nsDocumentEventListener;
591
592 struct HTMLDocumentNode {
593     HTMLDOMNode node;
594     HTMLDocument basedoc;
595
596     const IInternetHostSecurityManagerVtbl *lpIInternetHostSecurityManagerVtbl;
597
598     const nsIDocumentObserverVtbl  *lpIDocumentObserverVtbl;
599     const nsIRunnableVtbl  *lpIRunnableVtbl;
600
601     LONG ref;
602
603     nsIDOMHTMLDocument *nsdoc;
604     HTMLDOMNode *nodes;
605     BOOL content_ready;
606     event_target_t *body_event_target;
607
608     IInternetSecurityManager *secmgr;
609     ICatInformation *catmgr;
610     nsDocumentEventListener *nsevent_listener;
611     BOOL *event_vector;
612
613     BOOL skip_mutation_notif;
614     mutation_queue_t *mutation_queue;
615     mutation_queue_t *mutation_queue_tail;
616
617     struct list bindings;
618     struct list selection_list;
619     struct list range_list;
620 };
621
622 #define HTMLWINDOW2(x)   ((IHTMLWindow2*)                 &(x)->lpHTMLWindow2Vtbl)
623 #define HTMLWINDOW3(x)   ((IHTMLWindow3*)                 &(x)->lpHTMLWindow3Vtbl)
624 #define HTMLWINDOW4(x)   ((IHTMLWindow4*)                 &(x)->lpHTMLWindow4Vtbl)
625
626 #define HTMLDOC(x)       ((IHTMLDocument2*)               &(x)->lpHTMLDocument2Vtbl)
627 #define HTMLDOC3(x)      ((IHTMLDocument3*)               &(x)->lpHTMLDocument3Vtbl)
628 #define HTMLDOC4(x)      ((IHTMLDocument4*)               &(x)->lpHTMLDocument4Vtbl)
629 #define HTMLDOC5(x)      ((IHTMLDocument5*)               &(x)->lpHTMLDocument5Vtbl)
630 #define HTMLDOC6(x)      ((IHTMLDocument6*)               &(x)->lpHTMLDocument6Vtbl)
631 #define PERSIST(x)       ((IPersist*)                     &(x)->lpPersistFileVtbl)
632 #define PERSISTMON(x)    ((IPersistMoniker*)              &(x)->lpPersistMonikerVtbl)
633 #define PERSISTFILE(x)   ((IPersistFile*)                 &(x)->lpPersistFileVtbl)
634 #define MONPROP(x)       ((IMonikerProp*)                 &(x)->lpMonikerPropVtbl)
635 #define OLEOBJ(x)        ((IOleObject*)                   &(x)->lpOleObjectVtbl)
636 #define OLEDOC(x)        ((IOleDocument*)                 &(x)->lpOleDocumentVtbl)
637 #define DOCVIEW(x)       ((IOleDocumentView*)             &(x)->lpOleDocumentViewVtbl)
638 #define OLEWIN(x)        ((IOleWindow*)                   &(x)->lpOleInPlaceActiveObjectVtbl)
639 #define ACTOBJ(x)        ((IOleInPlaceActiveObject*)      &(x)->lpOleInPlaceActiveObjectVtbl)
640 #define VIEWOBJ(x)       ((IViewObject*)                  &(x)->lpViewObjectExVtbl)
641 #define VIEWOBJ2(x)      ((IViewObject2*)                 &(x)->lpViewObjectExVtbl)
642 #define VIEWOBJEX(x)      ((IViewObjectEx*)               &(x)->lpViewObjectExVtbl)
643 #define INPLACEOBJ(x)    ((IOleInPlaceObject*)            &(x)->lpOleInPlaceObjectWindowlessVtbl)
644 #define INPLACEWIN(x)    ((IOleInPlaceObjectWindowless*)  &(x)->lpOleInPlaceObjectWindowlessVtbl)
645 #define SERVPROV(x)      ((IServiceProvider*)             &(x)->lpServiceProviderVtbl)
646 #define CMDTARGET(x)     ((IOleCommandTarget*)            &(x)->lpOleCommandTargetVtbl)
647 #define CONTROL(x)       ((IOleControl*)                  &(x)->lpOleControlVtbl)
648 #define HLNKTARGET(x)    ((IHlinkTarget*)                 &(x)->lpHlinkTargetVtbl)
649 #define CONPTCONT(x)     ((IConnectionPointContainer*)    &(x)->lpConnectionPointContainerVtbl)
650 #define PERSTRINIT(x)    ((IPersistStreamInit*)           &(x)->lpPersistStreamInitVtbl)
651 #define PERSISTHIST(x)   ((IPersistHistory*)              &(x)->lpPersistHistoryVtbl)
652 #define CUSTOMDOC(x)     ((ICustomDoc*)                   &(x)->lpCustomDocVtbl)
653 #define OBJSITE(x)       ((IObjectWithSite*)              &(x)->lpObjectWithSiteVtbl)
654
655 #define NSWBCHROME(x)    ((nsIWebBrowserChrome*)          &(x)->lpWebBrowserChromeVtbl)
656 #define NSCML(x)         ((nsIContextMenuListener*)       &(x)->lpContextMenuListenerVtbl)
657 #define NSURICL(x)       ((nsIURIContentListener*)        &(x)->lpURIContentListenerVtbl)
658 #define NSEMBWNDS(x)     ((nsIEmbeddingSiteWindow*)       &(x)->lpEmbeddingSiteWindowVtbl)
659 #define NSIFACEREQ(x)    ((nsIInterfaceRequestor*)        &(x)->lpInterfaceRequestorVtbl)
660 #define NSTOOLTIP(x)     ((nsITooltipListener*)           &(x)->lpTooltipListenerVtbl)
661 #define NSEVENTLIST(x)   ((nsIDOMEventListener*)          &(x)->lpDOMEventListenerVtbl)
662 #define NSWEAKREF(x)     ((nsIWeakReference*)             &(x)->lpWeakReferenceVtbl)
663 #define NSSUPWEAKREF(x)  ((nsISupportsWeakReference*)     &(x)->lpSupportsWeakReferenceVtbl)
664
665 #define NSDOCOBS(x)      ((nsIDocumentObserver*)          &(x)->lpIDocumentObserverVtbl)
666
667 #define NSRUNNABLE(x)    ((nsIRunnable*)  &(x)->lpIRunnableVtbl)
668
669 #define NSCHANNEL(x)     ((nsIChannel*)        &(x)->lpHttpChannelVtbl)
670 #define NSHTTPCHANNEL(x) ((nsIHttpChannel*)    &(x)->lpHttpChannelVtbl)
671 #define NSUPCHANNEL(x)   ((nsIUploadChannel*)  &(x)->lpUploadChannelVtbl)
672 #define NSHTTPINTERNAL(x) ((nsIHttpChannelInternal*)  &(x)->lpIHttpChannelInternalVtbl)
673
674 #define HTTPNEG(x)       ((IHttpNegotiate2*)              &(x)->lpHttpNegotiate2Vtbl)
675 #define STATUSCLB(x)     ((IBindStatusCallback*)          &(x)->lpBindStatusCallbackVtbl)
676 #define BINDINFO(x)      ((IInternetBindInfo*)            &(x)->lpInternetBindInfoVtbl);
677
678 #define HTMLELEM(x)      ((IHTMLElement*)                 &(x)->lpHTMLElementVtbl)
679 #define HTMLELEM2(x)     ((IHTMLElement2*)                &(x)->lpHTMLElement2Vtbl)
680 #define HTMLELEM3(x)     ((IHTMLElement3*)                &(x)->lpHTMLElement3Vtbl)
681 #define HTMLDOMNODE(x)   ((IHTMLDOMNode*)                 &(x)->lpHTMLDOMNodeVtbl)
682 #define HTMLDOMNODE2(x)  ((IHTMLDOMNode2*)                &(x)->lpHTMLDOMNode2Vtbl)
683
684 #define HTMLTEXTCONT(x)  ((IHTMLTextContainer*)           &(x)->lpHTMLTextContainerVtbl)
685 #define HTMLFRAMEBASE(x) ((IHTMLFrameBase*)               &(x)->lpIHTMLFrameBaseVtbl)
686 #define HTMLFRAMEBASE2(x) ((IHTMLFrameBase2*)             &(x)->lpIHTMLFrameBase2Vtbl)
687
688 #define HTMLOPTFACTORY(x)  ((IHTMLOptionElementFactory*)  &(x)->lpHTMLOptionElementFactoryVtbl)
689 #define HTMLIMGFACTORY(x)  ((IHTMLImageElementFactory*)   &(x)->lpHTMLImageElementFactoryVtbl)
690 #define HTMLLOCATION(x)    ((IHTMLLocation*)              &(x)->lpHTMLLocationVtbl)
691
692 #define DISPATCHEX(x)    ((IDispatchEx*) &(x)->lpIDispatchExVtbl)
693
694 #define SUPPERRINFO(x)   ((ISupportErrorInfo*) &(x)->lpSupportErrorInfoVtbl)
695
696 #define HOSTSECMGR(x)    ((IInternetHostSecurityManager*)  &(x)->lpIInternetHostSecurityManagerVtbl)
697
698 #define DEFINE_THIS2(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,ifc)))
699 #define DEFINE_THIS(cls,ifc,iface) DEFINE_THIS2(cls,lp ## ifc ## Vtbl,iface)
700
701 HRESULT HTMLDocument_Create(IUnknown*,REFIID,void**);
702 HRESULT HTMLLoadOptions_Create(IUnknown*,REFIID,void**);
703 HRESULT create_doc_from_nsdoc(nsIDOMHTMLDocument*,HTMLDocumentObj*,HTMLWindow*,HTMLDocumentNode**);
704
705 HRESULT HTMLWindow_Create(HTMLDocumentObj*,nsIDOMWindow*,HTMLWindow*,HTMLWindow**);
706 void update_window_doc(HTMLWindow*);
707 HTMLWindow *nswindow_to_window(const nsIDOMWindow*);
708 nsIDOMWindow *get_nsdoc_window(nsIDOMDocument*);
709 HTMLOptionElementFactory *HTMLOptionElementFactory_Create(HTMLWindow*);
710 HTMLImageElementFactory *HTMLImageElementFactory_Create(HTMLWindow*);
711 HRESULT HTMLLocation_Create(HTMLWindow*,HTMLLocation**);
712 IOmNavigator *OmNavigator_Create(void);
713 HRESULT HTMLScreen_Create(IHTMLScreen**);
714
715 void HTMLDocument_HTMLDocument3_Init(HTMLDocument*);
716 void HTMLDocument_HTMLDocument5_Init(HTMLDocument*);
717 void HTMLDocument_Persist_Init(HTMLDocument*);
718 void HTMLDocument_OleCmd_Init(HTMLDocument*);
719 void HTMLDocument_OleObj_Init(HTMLDocument*);
720 void HTMLDocument_View_Init(HTMLDocument*);
721 void HTMLDocument_Window_Init(HTMLDocument*);
722 void HTMLDocument_Service_Init(HTMLDocument*);
723 void HTMLDocument_Hlink_Init(HTMLDocument*);
724
725 void HTMLDocumentNode_SecMgr_Init(HTMLDocumentNode*);
726
727 HRESULT HTMLCurrentStyle_Create(HTMLElement*,IHTMLCurrentStyle**);
728
729 void ConnectionPoint_Init(ConnectionPoint*,ConnectionPointContainer*,REFIID,cp_static_data_t*);
730 void ConnectionPointContainer_Init(ConnectionPointContainer*,IUnknown*);
731 void ConnectionPointContainer_Destroy(ConnectionPointContainer*);
732
733 NSContainer *NSContainer_Create(HTMLDocumentObj*,NSContainer*);
734 void NSContainer_Release(NSContainer*);
735
736 void init_mutation(HTMLDocumentNode*);
737 void release_mutation(HTMLDocumentNode*);
738
739 void HTMLDocument_LockContainer(HTMLDocumentObj*,BOOL);
740 void show_context_menu(HTMLDocumentObj*,DWORD,POINT*,IDispatch*);
741 void notif_focus(HTMLDocumentObj*);
742
743 void show_tooltip(HTMLDocumentObj*,DWORD,DWORD,LPCWSTR);
744 void hide_tooltip(HTMLDocumentObj*);
745 HRESULT get_client_disp_property(IOleClientSite*,DISPID,VARIANT*);
746
747 HRESULT ProtocolFactory_Create(REFCLSID,REFIID,void**);
748
749 BOOL load_gecko(BOOL);
750 void close_gecko(void);
751 void register_nsservice(nsIComponentRegistrar*,nsIServiceManager*);
752 void init_nsio(nsIComponentManager*,nsIComponentRegistrar*);
753 void release_nsio(void);
754 BOOL install_wine_gecko(BOOL);
755 BOOL is_gecko_path(const char*);
756
757 HRESULT nsuri_to_url(LPCWSTR,BOOL,BSTR*);
758 HRESULT create_doc_uri(HTMLWindow*,WCHAR*,nsWineURI**);
759 HRESULT load_nsuri(HTMLWindow*,nsWineURI*,nsChannelBSC*,DWORD);
760
761 HRESULT hlink_frame_navigate(HTMLDocument*,LPCWSTR,nsIInputStream*,DWORD,BOOL*);
762 HRESULT navigate_url(HTMLWindow*,const WCHAR*,const WCHAR*);
763 HRESULT set_frame_doc(HTMLFrameBase*,nsIDOMDocument*);
764 HRESULT set_moniker(HTMLDocument*,IMoniker*,IBindCtx*,nsChannelBSC*,BOOL);
765
766 void call_property_onchanged(ConnectionPoint*,DISPID);
767 HRESULT call_set_active_object(IOleInPlaceUIWindow*,IOleInPlaceActiveObject*);
768
769 void *nsalloc(size_t) __WINE_ALLOC_SIZE(1);
770 void nsfree(void*);
771
772 void nsACString_InitDepend(nsACString*,const char*);
773 void nsACString_SetData(nsACString*,const char*);
774 PRUint32 nsACString_GetData(const nsACString*,const char**);
775 void nsACString_Finish(nsACString*);
776
777 BOOL nsAString_Init(nsAString*,const PRUnichar*);
778 void nsAString_InitDepend(nsAString*,const PRUnichar*);
779 void nsAString_SetData(nsAString*,const PRUnichar*);
780 PRUint32 nsAString_GetData(const nsAString*,const PRUnichar**);
781 void nsAString_Finish(nsAString*);
782
783 nsICommandParams *create_nscommand_params(void);
784 HRESULT nsnode_to_nsstring(nsIDOMNode*,nsAString*);
785 void get_editor_controller(NSContainer*);
786 nsresult get_nsinterface(nsISupports*,REFIID,void**);
787
788 void init_nsevents(HTMLDocumentNode*);
789 void release_nsevents(HTMLDocumentNode*);
790 void add_nsevent_listener(HTMLDocumentNode*,nsIDOMNode*,LPCWSTR);
791
792 void set_window_bscallback(HTMLWindow*,nsChannelBSC*);
793 void set_current_mon(HTMLWindow*,IMoniker*);
794 HRESULT start_binding(HTMLWindow*,HTMLDocumentNode*,BSCallback*,IBindCtx*);
795 HRESULT async_start_doc_binding(HTMLWindow*,nsChannelBSC*);
796 void abort_document_bindings(HTMLDocumentNode*);
797
798 HRESULT bind_mon_to_buffer(HTMLDocumentNode*,IMoniker*,void**,DWORD*);
799
800 HRESULT create_channelbsc(IMoniker*,WCHAR*,BYTE*,DWORD,nsChannelBSC**);
801 HRESULT channelbsc_load_stream(nsChannelBSC*,IStream*);
802 void channelbsc_set_channel(nsChannelBSC*,nsChannel*,nsIStreamListener*,nsISupports*);
803 IMoniker *get_channelbsc_mon(nsChannelBSC*);
804
805 void set_ready_state(HTMLWindow*,READYSTATE);
806
807 HRESULT HTMLSelectionObject_Create(HTMLDocumentNode*,nsISelection*,IHTMLSelectionObject**);
808 HRESULT HTMLTxtRange_Create(HTMLDocumentNode*,nsIDOMRange*,IHTMLTxtRange**);
809 IHTMLStyle *HTMLStyle_Create(nsIDOMCSSStyleDeclaration*);
810 IHTMLStyleSheet *HTMLStyleSheet_Create(nsIDOMStyleSheet*);
811 IHTMLStyleSheetsCollection *HTMLStyleSheetsCollection_Create(nsIDOMStyleSheetList*);
812
813 void detach_selection(HTMLDocumentNode*);
814 void detach_ranges(HTMLDocumentNode*);
815 HRESULT get_node_text(HTMLDOMNode*,BSTR*);
816
817 HRESULT create_nselem(HTMLDocumentNode*,const WCHAR*,nsIDOMHTMLElement**);
818
819 HTMLDOMNode *HTMLDOMTextNode_Create(HTMLDocumentNode*,nsIDOMNode*);
820
821 HTMLElement *HTMLElement_Create(HTMLDocumentNode*,nsIDOMNode*,BOOL);
822 HTMLElement *HTMLCommentElement_Create(HTMLDocumentNode*,nsIDOMNode*);
823 HTMLElement *HTMLAnchorElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
824 HTMLElement *HTMLBodyElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
825 HTMLElement *HTMLEmbedElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
826 HTMLElement *HTMLFormElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
827 HTMLElement *HTMLFrameElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
828 HTMLElement *HTMLIFrame_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
829 HTMLElement *HTMLStyleElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
830 HTMLElement *HTMLImgElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
831 HTMLElement *HTMLInputElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
832 HTMLElement *HTMLObjectElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
833 HTMLElement *HTMLOptionElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
834 HTMLElement *HTMLScriptElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
835 HTMLElement *HTMLSelectElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
836 HTMLElement *HTMLTable_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
837 HTMLElement *HTMLTableRow_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
838 HTMLElement *HTMLTextAreaElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
839 HTMLElement *HTMLGenericElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
840
841 void HTMLDOMNode_Init(HTMLDocumentNode*,HTMLDOMNode*,nsIDOMNode*);
842 void HTMLElement_Init(HTMLElement*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*);
843 void HTMLElement2_Init(HTMLElement*);
844 void HTMLElement3_Init(HTMLElement*);
845 void HTMLTextContainer_Init(HTMLTextContainer*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*);
846 void HTMLFrameBase_Init(HTMLFrameBase*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*);
847
848 HRESULT HTMLDOMNode_QI(HTMLDOMNode*,REFIID,void**);
849 void HTMLDOMNode_destructor(HTMLDOMNode*);
850
851 HRESULT HTMLElement_QI(HTMLDOMNode*,REFIID,void**);
852 void HTMLElement_destructor(HTMLDOMNode*);
853 HRESULT HTMLElement_clone(HTMLDOMNode*,nsIDOMNode*,HTMLDOMNode**);
854
855 HRESULT HTMLFrameBase_QI(HTMLFrameBase*,REFIID,void**);
856 void HTMLFrameBase_destructor(HTMLFrameBase*);
857
858 HTMLDOMNode *get_node(HTMLDocumentNode*,nsIDOMNode*,BOOL);
859 void release_nodes(HTMLDocumentNode*);
860
861 void release_script_hosts(HTMLWindow*);
862 void connect_scripts(HTMLWindow*);
863 void doc_insert_script(HTMLWindow*,nsIDOMHTMLScriptElement*);
864 IDispatch *script_parse_event(HTMLWindow*,LPCWSTR);
865 HRESULT exec_script(HTMLWindow*,const WCHAR*,const WCHAR*,VARIANT*);
866 void set_script_mode(HTMLWindow*,SCRIPTMODE);
867 BOOL find_global_prop(HTMLWindow*,BSTR,DWORD,ScriptHost**,DISPID*);
868 IDispatch *get_script_disp(ScriptHost*);
869 HRESULT search_window_props(HTMLWindow*,BSTR,DWORD,DISPID*);
870
871 IHTMLElementCollection *create_all_collection(HTMLDOMNode*,BOOL);
872 IHTMLElementCollection *create_collection_from_nodelist(HTMLDocumentNode*,IUnknown*,nsIDOMNodeList*);
873 IHTMLElementCollection *create_collection_from_htmlcol(HTMLDocumentNode*,IUnknown*,nsIDOMHTMLCollection*);
874
875 /* commands */
876 typedef struct {
877     DWORD id;
878     HRESULT (*query)(HTMLDocument*,OLECMD*);
879     HRESULT (*exec)(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
880 } cmdtable_t;
881
882 extern const cmdtable_t editmode_cmds[];
883
884 void do_ns_command(HTMLDocument*,const char*,nsICommandParams*);
885
886 /* timer */
887 #define UPDATE_UI       0x0001
888 #define UPDATE_TITLE    0x0002
889
890 void update_doc(HTMLDocument*,DWORD);
891 void update_title(HTMLDocumentObj*);
892
893 /* editor */
894 void init_editor(HTMLDocument*);
895 void handle_edit_event(HTMLDocument*,nsIDOMEvent*);
896 HRESULT editor_exec_copy(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
897 HRESULT editor_exec_cut(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
898 HRESULT editor_exec_paste(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
899 void handle_edit_load(HTMLDocument*);
900 HRESULT editor_is_dirty(HTMLDocument*);
901 void set_dirty(HTMLDocument*,VARIANT_BOOL);
902
903 extern DWORD mshtml_tls;
904
905 typedef struct task_t task_t;
906 typedef void (*task_proc_t)(task_t*);
907
908 struct task_t {
909     LONG target_magic;
910     task_proc_t proc;
911     struct task_t *next;
912 };
913
914 typedef struct {
915     task_t header;
916     HTMLDocumentObj *doc;
917 } docobj_task_t;
918
919 typedef struct {
920     HWND thread_hwnd;
921     task_t *task_queue_head;
922     task_t *task_queue_tail;
923     struct list timer_list;
924 } thread_data_t;
925
926 thread_data_t *get_thread_data(BOOL);
927 HWND get_thread_hwnd(void);
928
929 LONG get_task_target_magic(void);
930 void push_task(task_t*,task_proc_t,LONG);
931 void remove_target_tasks(LONG);
932
933 DWORD set_task_timer(HTMLDocument*,DWORD,BOOL,IDispatch*);
934 HRESULT clear_task_timer(HTMLDocument*,BOOL,DWORD);
935
936 void release_typelib(void);
937 HRESULT call_disp_func(IDispatch*,DISPPARAMS*);
938
939 const char *debugstr_variant(const VARIANT*);
940
941 DEFINE_GUID(CLSID_AboutProtocol, 0x3050F406, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
942 DEFINE_GUID(CLSID_JSProtocol, 0x3050F3B2, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
943 DEFINE_GUID(CLSID_MailtoProtocol, 0x3050F3DA, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
944 DEFINE_GUID(CLSID_ResProtocol, 0x3050F3BC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
945 DEFINE_GUID(CLSID_SysimageProtocol, 0x76E67A63, 0x06E9, 0x11D2, 0xA8,0x40, 0x00,0x60,0x08,0x05,0x93,0x82);
946
947 DEFINE_GUID(CLSID_CMarkup,0x3050f4fb,0x98b5,0x11cf,0xbb,0x82,0x00,0xaa,0x00,0xbd,0xce,0x0b);
948
949 /* memory allocation functions */
950
951 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
952 {
953     return HeapAlloc(GetProcessHeap(), 0, len);
954 }
955
956 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len)
957 {
958     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
959 }
960
961 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t len)
962 {
963     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
964 }
965
966 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t len)
967 {
968     return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len);
969 }
970
971 static inline BOOL heap_free(void *mem)
972 {
973     return HeapFree(GetProcessHeap(), 0, mem);
974 }
975
976 static inline LPWSTR heap_strdupW(LPCWSTR str)
977 {
978     LPWSTR ret = NULL;
979
980     if(str) {
981         DWORD size;
982
983         size = (strlenW(str)+1)*sizeof(WCHAR);
984         ret = heap_alloc(size);
985         memcpy(ret, str, size);
986     }
987
988     return ret;
989 }
990
991 static inline LPWSTR heap_strndupW(LPCWSTR str, unsigned len)
992 {
993     LPWSTR ret = NULL;
994
995     if(str) {
996         ret = heap_alloc((len+1)*sizeof(WCHAR));
997         memcpy(ret, str, len*sizeof(WCHAR));
998         ret[len] = 0;
999     }
1000
1001     return ret;
1002 }
1003
1004 static inline char *heap_strdupA(const char *str)
1005 {
1006     char *ret = NULL;
1007
1008     if(str) {
1009         DWORD size;
1010
1011         size = strlen(str)+1;
1012         ret = heap_alloc(size);
1013         memcpy(ret, str, size);
1014     }
1015
1016     return ret;
1017 }
1018
1019 static inline WCHAR *heap_strdupAtoW(const char *str)
1020 {
1021     LPWSTR ret = NULL;
1022
1023     if(str) {
1024         DWORD len;
1025
1026         len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
1027         ret = heap_alloc(len*sizeof(WCHAR));
1028         MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
1029     }
1030
1031     return ret;
1032 }
1033
1034 static inline char *heap_strdupWtoA(LPCWSTR str)
1035 {
1036     char *ret = NULL;
1037
1038     if(str) {
1039         DWORD size = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
1040         ret = heap_alloc(size);
1041         WideCharToMultiByte(CP_ACP, 0, str, -1, ret, size, NULL, NULL);
1042     }
1043
1044     return ret;
1045 }
1046
1047 static inline void windowref_addref(windowref_t *ref)
1048 {
1049     InterlockedIncrement(&ref->ref);
1050 }
1051
1052 static inline void windowref_release(windowref_t *ref)
1053 {
1054     if(!InterlockedDecrement(&ref->ref))
1055         heap_free(ref);
1056 }
1057
1058 HDC get_display_dc(void);
1059 HINSTANCE get_shdoclc(void);
1060 void set_statustext(HTMLDocumentObj*,INT,LPCWSTR);
1061
1062 extern HINSTANCE hInst;