mshtml: Properly report history update for location.replace call.
[wine.git] / dlls / mshtml / mshtml_private.h
blob74f1b399f19a2254c76d21f8bf50f49d3faa8c51
1 /*
2 * Copyright 2005-2009 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 #include "wingdi.h"
20 #include "docobj.h"
21 #include "docobjectservice.h"
22 #include "comcat.h"
23 #include "mshtml.h"
24 #include "mshtmhst.h"
25 #include "hlink.h"
26 #include "perhist.h"
27 #include "dispex.h"
28 #include "objsafe.h"
29 #include "htiframe.h"
30 #include "tlogstg.h"
32 #include "wine/list.h"
33 #include "wine/unicode.h"
35 #ifdef INIT_GUID
36 #include "initguid.h"
37 #endif
39 #include "nsiface.h"
41 #define NS_ERROR_GENERATE_FAILURE(module,code) \
42 ((nsresult) (((PRUint32)(1<<31)) | ((PRUint32)(module+0x45)<<16) | ((PRUint32)(code))))
44 #define NS_OK ((nsresult)0x00000000L)
45 #define NS_ERROR_FAILURE ((nsresult)0x80004005L)
46 #define NS_ERROR_OUT_OF_MEMORY ((nsresult)0x8007000EL)
47 #define NS_ERROR_NOT_IMPLEMENTED ((nsresult)0x80004001L)
48 #define NS_NOINTERFACE ((nsresult)0x80004002L)
49 #define NS_ERROR_INVALID_POINTER ((nsresult)0x80004003L)
50 #define NS_ERROR_NULL_POINTER NS_ERROR_INVALID_POINTER
51 #define NS_ERROR_NOT_AVAILABLE ((nsresult)0x80040111L)
52 #define NS_ERROR_INVALID_ARG ((nsresult)0x80070057L)
53 #define NS_ERROR_UNEXPECTED ((nsresult)0x8000ffffL)
55 #define NS_ERROR_MODULE_NETWORK 6
57 #define NS_BINDING_ABORTED NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 2)
58 #define NS_ERROR_UNKNOWN_PROTOCOL NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 18)
60 #define NS_FAILED(res) ((res) & 0x80000000)
61 #define NS_SUCCEEDED(res) (!NS_FAILED(res))
63 #define NSAPI WINAPI
65 #define MSHTML_E_NODOC 0x800a025c
67 typedef struct HTMLDOMNode HTMLDOMNode;
68 typedef struct ConnectionPoint ConnectionPoint;
69 typedef struct BSCallback BSCallback;
70 typedef struct event_target_t event_target_t;
72 #define TID_LIST \
73 XIID(NULL) \
74 XDIID(DispCEventObj) \
75 XDIID(DispCPlugins) \
76 XDIID(DispDOMChildrenCollection) \
77 XDIID(DispHTMLAnchorElement) \
78 XDIID(DispHTMLAttributeCollection) \
79 XDIID(DispHTMLBody) \
80 XDIID(DispHTMLCommentElement) \
81 XDIID(DispHTMLCurrentStyle) \
82 XDIID(DispHTMLDocument) \
83 XDIID(DispHTMLDOMAttribute) \
84 XDIID(DispHTMLDOMTextNode) \
85 XDIID(DispHTMLElementCollection) \
86 XDIID(DispHTMLEmbed) \
87 XDIID(DispHTMLFormElement) \
88 XDIID(DispHTMLGenericElement) \
89 XDIID(DispHTMLFrameElement) \
90 XDIID(DispHTMLHeadElement) \
91 XDIID(DispHTMLHistory) \
92 XDIID(DispHTMLIFrame) \
93 XDIID(DispHTMLImg) \
94 XDIID(DispHTMLInputElement) \
95 XDIID(DispHTMLLinkElement) \
96 XDIID(DispHTMLLocation) \
97 XDIID(DispHTMLMetaElement) \
98 XDIID(DispHTMLNavigator) \
99 XDIID(DispHTMLObjectElement) \
100 XDIID(DispHTMLOptionElement) \
101 XDIID(DispHTMLScreen) \
102 XDIID(DispHTMLScriptElement) \
103 XDIID(DispHTMLSelectElement) \
104 XDIID(DispHTMLStyle) \
105 XDIID(DispHTMLStyleElement) \
106 XDIID(DispHTMLStyleSheetsCollection) \
107 XDIID(DispHTMLTable) \
108 XDIID(DispHTMLTableCell) \
109 XDIID(DispHTMLTableRow) \
110 XDIID(DispHTMLTextAreaElement) \
111 XDIID(DispHTMLTitleElement) \
112 XDIID(DispHTMLUnknownElement) \
113 XDIID(DispHTMLWindow2) \
114 XDIID(HTMLDocumentEvents) \
115 XIID(IHTMLAnchorElement) \
116 XIID(IHTMLAttributeCollection) \
117 XIID(IHTMLAttributeCollection2) \
118 XIID(IHTMLAttributeCollection3) \
119 XIID(IHTMLBodyElement) \
120 XIID(IHTMLBodyElement2) \
121 XIID(IHTMLCommentElement) \
122 XIID(IHTMLCurrentStyle) \
123 XIID(IHTMLCurrentStyle2) \
124 XIID(IHTMLCurrentStyle3) \
125 XIID(IHTMLCurrentStyle4) \
126 XIID(IHTMLDocument2) \
127 XIID(IHTMLDocument3) \
128 XIID(IHTMLDocument4) \
129 XIID(IHTMLDocument5) \
130 XIID(IHTMLDOMAttribute) \
131 XIID(IHTMLDOMChildrenCollection) \
132 XIID(IHTMLDOMNode) \
133 XIID(IHTMLDOMNode2) \
134 XIID(IHTMLDOMTextNode) \
135 XIID(IHTMLElement) \
136 XIID(IHTMLElement2) \
137 XIID(IHTMLElement3) \
138 XIID(IHTMLElement4) \
139 XIID(IHTMLElementCollection) \
140 XIID(IHTMLEmbedElement) \
141 XIID(IHTMLEventObj) \
142 XIID(IHTMLFiltersCollection) \
143 XIID(IHTMLFormElement) \
144 XIID(IHTMLFrameBase) \
145 XIID(IHTMLFrameBase2) \
146 XIID(IHTMLFrameElement3) \
147 XIID(IHTMLGenericElement) \
148 XIID(IHTMLHeadElement) \
149 XIID(IHTMLIFrameElement) \
150 XIID(IHTMLIFrameElement2) \
151 XIID(IHTMLIFrameElement3) \
152 XIID(IHTMLImageElementFactory) \
153 XIID(IHTMLImgElement) \
154 XIID(IHTMLInputElement) \
155 XIID(IHTMLLinkElement) \
156 XIID(IHTMLLocation) \
157 XIID(IHTMLMetaElement) \
158 XIID(IHTMLMimeTypesCollection) \
159 XIID(IHTMLObjectElement) \
160 XIID(IHTMLObjectElement2) \
161 XIID(IHTMLOptionElement) \
162 XIID(IHTMLPluginsCollection) \
163 XIID(IHTMLRect) \
164 XIID(IHTMLScreen) \
165 XIID(IHTMLScriptElement) \
166 XIID(IHTMLSelectElement) \
167 XIID(IHTMLStorage) \
168 XIID(IHTMLStyle) \
169 XIID(IHTMLStyle2) \
170 XIID(IHTMLStyle3) \
171 XIID(IHTMLStyle4) \
172 XIID(IHTMLStyle5) \
173 XIID(IHTMLStyle6) \
174 XIID(IHTMLStyleElement) \
175 XIID(IHTMLStyleSheetsCollection) \
176 XIID(IHTMLTable) \
177 XIID(IHTMLTable2) \
178 XIID(IHTMLTable3) \
179 XIID(IHTMLTableCell) \
180 XIID(IHTMLTableRow) \
181 XIID(IHTMLTextAreaElement) \
182 XIID(IHTMLTextContainer) \
183 XIID(IHTMLTitleElement) \
184 XIID(IHTMLUniqueName) \
185 XIID(IHTMLWindow2) \
186 XIID(IHTMLWindow3) \
187 XIID(IHTMLWindow4) \
188 XIID(IHTMLWindow5) \
189 XIID(IHTMLWindow6) \
190 XIID(IOmHistory) \
191 XIID(IOmNavigator)
193 typedef enum {
194 #define XIID(iface) iface ## _tid,
195 #define XDIID(iface) iface ## _tid,
196 TID_LIST
197 #undef XIID
198 #undef XDIID
199 LAST_tid
200 } tid_t;
202 typedef struct dispex_data_t dispex_data_t;
203 typedef struct dispex_dynamic_data_t dispex_dynamic_data_t;
205 #define MSHTML_DISPID_CUSTOM_MIN 0x60000000
206 #define MSHTML_DISPID_CUSTOM_MAX 0x6fffffff
207 #define MSHTML_CUSTOM_DISPID_CNT (MSHTML_DISPID_CUSTOM_MAX-MSHTML_DISPID_CUSTOM_MIN)
209 typedef struct DispatchEx DispatchEx;
211 typedef struct {
212 HRESULT (*value)(DispatchEx*,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
213 HRESULT (*get_dispid)(DispatchEx*,BSTR,DWORD,DISPID*);
214 HRESULT (*invoke)(DispatchEx*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
215 HRESULT (*populate_props)(DispatchEx*);
216 } dispex_static_data_vtbl_t;
218 typedef struct {
219 const dispex_static_data_vtbl_t *vtbl;
220 const tid_t disp_tid;
221 dispex_data_t *data;
222 const tid_t* const iface_tids;
223 } dispex_static_data_t;
225 struct DispatchEx {
226 IDispatchEx IDispatchEx_iface;
228 IUnknown *outer;
230 dispex_static_data_t *data;
231 dispex_dynamic_data_t *dynamic_data;
234 typedef struct {
235 void *x;
236 } nsCycleCollectingAutoRefCnt;
238 typedef struct {
239 void *x[9];
240 } nsXPCOMCycleCollectionParticipant;
242 typedef struct nsCycleCollectionTraversalCallback nsCycleCollectionTraversalCallback;
244 typedef struct {
245 void (NSAPI *unmark_if_purple)(void*);
246 nsresult (NSAPI *traverse)(void*,void*,nsCycleCollectionTraversalCallback*);
247 nsresult (NSAPI *unlink)(void*);
248 } CCObjCallback;
250 DEFINE_GUID(IID_nsXPCOMCycleCollectionParticipant, 0x9674489b,0x1f6f,0x4550,0xa7,0x30, 0xcc,0xae,0xdd,0x10,0x4c,0xf9);
252 nsrefcnt (__cdecl *ccref_incr)(nsCycleCollectingAutoRefCnt*,nsISupports*);
253 nsrefcnt (__cdecl *ccref_decr)(nsCycleCollectingAutoRefCnt*,nsISupports*);
254 void (__cdecl *ccref_init)(nsCycleCollectingAutoRefCnt*,nsrefcnt);
255 void (__cdecl *ccref_unmark_if_purple)(nsCycleCollectingAutoRefCnt*);
256 void (__cdecl *ccp_init)(nsXPCOMCycleCollectionParticipant*,const CCObjCallback*);
257 void (__cdecl *describe_cc_node)(nsCycleCollectingAutoRefCnt*,size_t,const char*,nsCycleCollectionTraversalCallback*);
258 void (__cdecl *note_cc_edge)(nsISupports*,const char*,nsCycleCollectionTraversalCallback*);
260 void init_dispex(DispatchEx*,IUnknown*,dispex_static_data_t*) DECLSPEC_HIDDEN;
261 void release_dispex(DispatchEx*) DECLSPEC_HIDDEN;
262 BOOL dispex_query_interface(DispatchEx*,REFIID,void**) DECLSPEC_HIDDEN;
263 HRESULT dispex_get_dprop_ref(DispatchEx*,const WCHAR*,BOOL,VARIANT**) DECLSPEC_HIDDEN;
264 HRESULT get_dispids(tid_t,DWORD*,DISPID**) DECLSPEC_HIDDEN;
265 HRESULT remove_prop(DispatchEx*,BSTR,VARIANT_BOOL*) DECLSPEC_HIDDEN;
266 HRESULT dispex_get_dynid(DispatchEx*,const WCHAR*,DISPID*) DECLSPEC_HIDDEN;
267 void dispex_traverse(DispatchEx*,nsCycleCollectionTraversalCallback*) DECLSPEC_HIDDEN;
268 void dispex_unlink(DispatchEx*) DECLSPEC_HIDDEN;
269 void release_typelib(void) DECLSPEC_HIDDEN;
270 HRESULT get_htmldoc_classinfo(ITypeInfo **typeinfo) DECLSPEC_HIDDEN;
272 typedef enum {
273 DISPEXPROP_CUSTOM,
274 DISPEXPROP_DYNAMIC,
275 DISPEXPROP_BUILTIN
276 } dispex_prop_type_t;
278 dispex_prop_type_t get_dispid_type(DISPID) DECLSPEC_HIDDEN;
280 typedef struct HTMLWindow HTMLWindow;
281 typedef struct HTMLInnerWindow HTMLInnerWindow;
282 typedef struct HTMLOuterWindow HTMLOuterWindow;
283 typedef struct HTMLDocumentNode HTMLDocumentNode;
284 typedef struct HTMLDocumentObj HTMLDocumentObj;
285 typedef struct HTMLFrameBase HTMLFrameBase;
286 typedef struct NSContainer NSContainer;
287 typedef struct HTMLAttributeCollection HTMLAttributeCollection;
289 typedef enum {
290 SCRIPTMODE_GECKO,
291 SCRIPTMODE_ACTIVESCRIPT
292 } SCRIPTMODE;
294 typedef struct ScriptHost ScriptHost;
296 typedef enum {
297 GLOBAL_SCRIPTVAR,
298 GLOBAL_ELEMENTVAR,
299 GLOBAL_DISPEXVAR,
300 GLOBAL_FRAMEVAR
301 } global_prop_type_t;
303 typedef struct {
304 global_prop_type_t type;
305 WCHAR *name;
306 ScriptHost *script_host;
307 DISPID id;
308 } global_prop_t;
310 typedef struct {
311 IHTMLOptionElementFactory IHTMLOptionElementFactory_iface;
313 LONG ref;
315 HTMLInnerWindow *window;
316 } HTMLOptionElementFactory;
318 typedef struct {
319 DispatchEx dispex;
320 IHTMLImageElementFactory IHTMLImageElementFactory_iface;
322 LONG ref;
324 HTMLInnerWindow *window;
325 } HTMLImageElementFactory;
327 struct HTMLLocation {
328 DispatchEx dispex;
329 IHTMLLocation IHTMLLocation_iface;
331 LONG ref;
333 HTMLInnerWindow *window;
336 typedef struct {
337 HTMLOuterWindow *window;
338 LONG ref;
339 } windowref_t;
341 typedef struct nsChannelBSC nsChannelBSC;
343 struct HTMLWindow {
344 IHTMLWindow2 IHTMLWindow2_iface;
345 IHTMLWindow3 IHTMLWindow3_iface;
346 IHTMLWindow4 IHTMLWindow4_iface;
347 IHTMLWindow5 IHTMLWindow5_iface;
348 IHTMLWindow6 IHTMLWindow6_iface;
349 IHTMLPrivateWindow IHTMLPrivateWindow_iface;
350 IDispatchEx IDispatchEx_iface;
351 IServiceProvider IServiceProvider_iface;
352 ITravelLogClient ITravelLogClient_iface;
354 LONG ref;
356 HTMLInnerWindow *inner_window;
357 HTMLOuterWindow *outer_window;
360 struct HTMLOuterWindow {
361 HTMLWindow base;
363 windowref_t *window_ref;
364 LONG task_magic;
366 HTMLDocumentObj *doc_obj;
367 nsIDOMWindow *nswindow;
368 HTMLOuterWindow *parent;
369 HTMLFrameBase *frame_element;
370 READYSTATE readystate;
372 HTMLInnerWindow *pending_window;
373 IMoniker *mon;
374 IUri *uri;
375 IUri *uri_nofrag;
376 BSTR url;
378 SCRIPTMODE scriptmode;
380 IInternetSecurityManager *secmgr;
382 struct list children;
383 struct list sibling_entry;
384 struct list entry;
387 struct HTMLInnerWindow {
388 HTMLWindow base;
389 DispatchEx dispex;
391 HTMLDocumentNode *doc;
393 struct list script_hosts;
395 IHTMLEventObj *event;
397 HTMLImageElementFactory *image_factory;
398 HTMLOptionElementFactory *option_factory;
399 IHTMLScreen *screen;
400 IOmHistory *history;
401 IHTMLStorage *session_storage;
403 unsigned parser_callback_cnt;
404 struct list script_queue;
406 global_prop_t *global_props;
407 DWORD global_prop_cnt;
408 DWORD global_prop_size;
410 LONG task_magic;
412 HTMLLocation *location;
414 IMoniker *mon;
415 nsChannelBSC *bscallback;
416 struct list bindings;
419 typedef enum {
420 UNKNOWN_USERMODE,
421 BROWSEMODE,
422 EDITMODE
423 } USERMODE;
425 typedef struct _cp_static_data_t {
426 tid_t tid;
427 void (*on_advise)(IUnknown*,struct _cp_static_data_t*);
428 DWORD id_cnt;
429 DISPID *ids;
430 } cp_static_data_t;
432 typedef struct ConnectionPointContainer {
433 IConnectionPointContainer IConnectionPointContainer_iface;
435 ConnectionPoint *cp_list;
436 IUnknown *outer;
437 struct ConnectionPointContainer *forward_container;
438 } ConnectionPointContainer;
440 struct ConnectionPoint {
441 IConnectionPoint IConnectionPoint_iface;
443 ConnectionPointContainer *container;
445 union {
446 IUnknown *unk;
447 IDispatch *disp;
448 IPropertyNotifySink *propnotif;
449 } *sinks;
450 DWORD sinks_size;
452 const IID *iid;
453 cp_static_data_t *data;
455 ConnectionPoint *next;
458 struct HTMLDocument {
459 IHTMLDocument2 IHTMLDocument2_iface;
460 IHTMLDocument3 IHTMLDocument3_iface;
461 IHTMLDocument4 IHTMLDocument4_iface;
462 IHTMLDocument5 IHTMLDocument5_iface;
463 IHTMLDocument6 IHTMLDocument6_iface;
464 IPersistMoniker IPersistMoniker_iface;
465 IPersistFile IPersistFile_iface;
466 IPersistHistory IPersistHistory_iface;
467 IMonikerProp IMonikerProp_iface;
468 IOleObject IOleObject_iface;
469 IOleDocument IOleDocument_iface;
470 IOleDocumentView IOleDocumentView_iface;
471 IOleInPlaceActiveObject IOleInPlaceActiveObject_iface;
472 IViewObjectEx IViewObjectEx_iface;
473 IOleInPlaceObjectWindowless IOleInPlaceObjectWindowless_iface;
474 IServiceProvider IServiceProvider_iface;
475 IOleCommandTarget IOleCommandTarget_iface;
476 IOleControl IOleControl_iface;
477 IHlinkTarget IHlinkTarget_iface;
478 IPersistStreamInit IPersistStreamInit_iface;
479 IDispatchEx IDispatchEx_iface;
480 ISupportErrorInfo ISupportErrorInfo_iface;
481 IObjectWithSite IObjectWithSite_iface;
482 IOleContainer IOleContainer_iface;
483 IObjectSafety IObjectSafety_iface;
484 IProvideClassInfo IProvideClassInfo_iface;
486 IUnknown *unk_impl;
487 IDispatchEx *dispex;
489 HTMLDocumentObj *doc_obj;
490 HTMLDocumentNode *doc_node;
492 HTMLOuterWindow *window;
494 LONG task_magic;
496 ConnectionPointContainer cp_container;
497 ConnectionPoint cp_htmldocevents;
498 ConnectionPoint cp_htmldocevents2;
499 ConnectionPoint cp_propnotif;
500 ConnectionPoint cp_dispatch;
502 IOleAdviseHolder *advise_holder;
505 static inline HRESULT htmldoc_query_interface(HTMLDocument *This, REFIID riid, void **ppv)
507 return IUnknown_QueryInterface(This->unk_impl, riid, ppv);
510 static inline ULONG htmldoc_addref(HTMLDocument *This)
512 return IUnknown_AddRef(This->unk_impl);
515 static inline ULONG htmldoc_release(HTMLDocument *This)
517 return IUnknown_Release(This->unk_impl);
520 struct HTMLDocumentObj {
521 HTMLDocument basedoc;
522 DispatchEx dispex;
523 ICustomDoc ICustomDoc_iface;
524 ITargetContainer ITargetContainer_iface;
526 IWindowForBindingUI IWindowForBindingUI_iface;
528 LONG ref;
530 NSContainer *nscontainer;
532 IOleClientSite *client;
533 IDocHostUIHandler *hostui;
534 BOOL custom_hostui;
535 IOleInPlaceSite *ipsite;
536 IOleInPlaceFrame *frame;
537 IOleInPlaceUIWindow *ip_window;
538 IAdviseSink *view_sink;
539 IDocObjectService *doc_object_service;
541 DOCHOSTUIINFO hostinfo;
543 IOleUndoManager *undomgr;
545 HWND hwnd;
546 HWND tooltips_hwnd;
548 BOOL request_uiactivate;
549 BOOL in_place_active;
550 BOOL ui_active;
551 BOOL window_active;
552 BOOL hostui_setup;
553 BOOL is_webbrowser;
554 BOOL container_locked;
555 BOOL focus;
556 BOOL has_popup;
557 INT download_state;
559 USERMODE usermode;
560 LPWSTR mime;
562 DWORD update;
565 typedef struct nsWeakReference nsWeakReference;
567 struct NSContainer {
568 nsIWebBrowserChrome nsIWebBrowserChrome_iface;
569 nsIContextMenuListener nsIContextMenuListener_iface;
570 nsIURIContentListener nsIURIContentListener_iface;
571 nsIEmbeddingSiteWindow nsIEmbeddingSiteWindow_iface;
572 nsITooltipListener nsITooltipListener_iface;
573 nsIInterfaceRequestor nsIInterfaceRequestor_iface;
574 nsISupportsWeakReference nsISupportsWeakReference_iface;
576 nsIWebBrowser *webbrowser;
577 nsIWebNavigation *navigation;
578 nsIBaseWindow *window;
579 nsIWebBrowserFocus *focus;
581 nsIEditor *editor;
582 nsIController *editor_controller;
584 LONG ref;
586 nsWeakReference *weak_reference;
588 NSContainer *parent;
589 HTMLDocumentObj *doc;
591 nsIURIContentListener *content_listener;
593 HWND hwnd;
596 typedef struct {
597 HRESULT (*qi)(HTMLDOMNode*,REFIID,void**);
598 void (*destructor)(HTMLDOMNode*);
599 HRESULT (*clone)(HTMLDOMNode*,nsIDOMNode*,HTMLDOMNode**);
600 HRESULT (*handle_event)(HTMLDOMNode*,DWORD,nsIDOMEvent*,BOOL*);
601 HRESULT (*get_attr_col)(HTMLDOMNode*,HTMLAttributeCollection**);
602 event_target_t **(*get_event_target)(HTMLDOMNode*);
603 HRESULT (*fire_event)(HTMLDOMNode*,DWORD,BOOL*);
604 HRESULT (*put_disabled)(HTMLDOMNode*,VARIANT_BOOL);
605 HRESULT (*get_disabled)(HTMLDOMNode*,VARIANT_BOOL*);
606 HRESULT (*get_document)(HTMLDOMNode*,IDispatch**);
607 HRESULT (*get_readystate)(HTMLDOMNode*,BSTR*);
608 HRESULT (*get_dispid)(HTMLDOMNode*,BSTR,DWORD,DISPID*);
609 HRESULT (*invoke)(HTMLDOMNode*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
610 HRESULT (*bind_to_tree)(HTMLDOMNode*);
611 void (*traverse)(HTMLDOMNode*,nsCycleCollectionTraversalCallback*);
612 void (*unlink)(HTMLDOMNode*);
613 } NodeImplVtbl;
615 struct HTMLDOMNode {
616 DispatchEx dispex;
617 IHTMLDOMNode IHTMLDOMNode_iface;
618 IHTMLDOMNode2 IHTMLDOMNode2_iface;
619 const NodeImplVtbl *vtbl;
621 nsCycleCollectingAutoRefCnt ccref;
623 nsIDOMNode *nsnode;
624 HTMLDocumentNode *doc;
625 event_target_t *event_target;
626 ConnectionPointContainer *cp_container;
629 static inline void node_addref(HTMLDOMNode *node)
631 IHTMLDOMNode_AddRef(&node->IHTMLDOMNode_iface);
634 static inline void node_release(HTMLDOMNode *node)
636 IHTMLDOMNode_Release(&node->IHTMLDOMNode_iface);
639 typedef struct {
640 HTMLDOMNode node;
641 ConnectionPointContainer cp_container;
643 IHTMLElement IHTMLElement_iface;
644 IHTMLElement2 IHTMLElement2_iface;
645 IHTMLElement3 IHTMLElement3_iface;
646 IHTMLElement4 IHTMLElement4_iface;
648 nsIDOMHTMLElement *nselem;
649 HTMLStyle *style;
650 HTMLStyle *runtime_style;
651 HTMLAttributeCollection *attrs;
652 WCHAR *filter;
653 } HTMLElement;
655 #define HTMLELEMENT_TIDS \
656 IHTMLDOMNode_tid, \
657 IHTMLDOMNode2_tid, \
658 IHTMLElement_tid, \
659 IHTMLElement2_tid, \
660 IHTMLElement3_tid, \
661 IHTMLElement4_tid
663 typedef struct {
664 HTMLElement element;
666 IHTMLTextContainer IHTMLTextContainer_iface;
668 ConnectionPoint cp;
669 } HTMLTextContainer;
671 struct HTMLFrameBase {
672 HTMLElement element;
674 IHTMLFrameBase IHTMLFrameBase_iface;
675 IHTMLFrameBase2 IHTMLFrameBase2_iface;
677 HTMLOuterWindow *content_window;
679 nsIDOMHTMLFrameElement *nsframe;
680 nsIDOMHTMLIFrameElement *nsiframe;
683 typedef struct nsDocumentEventListener nsDocumentEventListener;
685 struct HTMLDocumentNode {
686 HTMLDOMNode node;
687 HTMLDocument basedoc;
689 IInternetHostSecurityManager IInternetHostSecurityManager_iface;
691 nsIDocumentObserver nsIDocumentObserver_iface;
693 LONG ref;
695 HTMLInnerWindow *window;
697 nsIDOMHTMLDocument *nsdoc;
698 nsIDOMNodeSelector *nsnode_selector;
699 BOOL content_ready;
700 event_target_t *body_event_target;
702 ICatInformation *catmgr;
703 nsDocumentEventListener *nsevent_listener;
704 BOOL *event_vector;
706 WCHAR **elem_vars;
707 unsigned elem_vars_size;
708 unsigned elem_vars_cnt;
710 BOOL skip_mutation_notif;
712 struct list selection_list;
713 struct list range_list;
714 struct list plugin_hosts;
717 HRESULT HTMLDocument_Create(IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
718 HRESULT HTMLLoadOptions_Create(IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
719 HRESULT create_doc_from_nsdoc(nsIDOMHTMLDocument*,HTMLDocumentObj*,HTMLInnerWindow*,HTMLDocumentNode**) DECLSPEC_HIDDEN;
720 HRESULT create_document_fragment(nsIDOMNode*,HTMLDocumentNode*,HTMLDocumentNode**) DECLSPEC_HIDDEN;
722 HRESULT HTMLOuterWindow_Create(HTMLDocumentObj*,nsIDOMWindow*,HTMLOuterWindow*,HTMLOuterWindow**) DECLSPEC_HIDDEN;
723 HRESULT update_window_doc(HTMLInnerWindow*) DECLSPEC_HIDDEN;
724 HTMLOuterWindow *nswindow_to_window(const nsIDOMWindow*) DECLSPEC_HIDDEN;
725 void get_top_window(HTMLOuterWindow*,HTMLOuterWindow**) DECLSPEC_HIDDEN;
726 HRESULT HTMLOptionElementFactory_Create(HTMLInnerWindow*,HTMLOptionElementFactory**) DECLSPEC_HIDDEN;
727 HRESULT HTMLImageElementFactory_Create(HTMLInnerWindow*,HTMLImageElementFactory**) DECLSPEC_HIDDEN;
728 HRESULT HTMLLocation_Create(HTMLInnerWindow*,HTMLLocation**) DECLSPEC_HIDDEN;
729 IOmNavigator *OmNavigator_Create(void) DECLSPEC_HIDDEN;
730 HRESULT HTMLScreen_Create(IHTMLScreen**) DECLSPEC_HIDDEN;
731 HRESULT create_history(IOmHistory**) DECLSPEC_HIDDEN;
733 HRESULT create_storage(IHTMLStorage**) DECLSPEC_HIDDEN;
735 void HTMLDocument_HTMLDocument3_Init(HTMLDocument*) DECLSPEC_HIDDEN;
736 void HTMLDocument_HTMLDocument5_Init(HTMLDocument*) DECLSPEC_HIDDEN;
737 void HTMLDocument_Persist_Init(HTMLDocument*) DECLSPEC_HIDDEN;
738 void HTMLDocument_OleCmd_Init(HTMLDocument*) DECLSPEC_HIDDEN;
739 void HTMLDocument_OleObj_Init(HTMLDocument*) DECLSPEC_HIDDEN;
740 void HTMLDocument_View_Init(HTMLDocument*) DECLSPEC_HIDDEN;
741 void HTMLDocument_Window_Init(HTMLDocument*) DECLSPEC_HIDDEN;
742 void HTMLDocument_Service_Init(HTMLDocument*) DECLSPEC_HIDDEN;
743 void HTMLDocument_Hlink_Init(HTMLDocument*) DECLSPEC_HIDDEN;
745 void TargetContainer_Init(HTMLDocumentObj*) DECLSPEC_HIDDEN;
746 void init_binding_ui(HTMLDocumentObj*) DECLSPEC_HIDDEN;
748 void HTMLDocumentNode_SecMgr_Init(HTMLDocumentNode*) DECLSPEC_HIDDEN;
750 HRESULT HTMLCurrentStyle_Create(HTMLElement*,IHTMLCurrentStyle**) DECLSPEC_HIDDEN;
752 void ConnectionPoint_Init(ConnectionPoint*,ConnectionPointContainer*,REFIID,cp_static_data_t*) DECLSPEC_HIDDEN;
753 void ConnectionPointContainer_Init(ConnectionPointContainer*,IUnknown*) DECLSPEC_HIDDEN;
754 void ConnectionPointContainer_Destroy(ConnectionPointContainer*) DECLSPEC_HIDDEN;
756 HRESULT create_nscontainer(HTMLDocumentObj*,NSContainer**) DECLSPEC_HIDDEN;
757 void NSContainer_Release(NSContainer*) DECLSPEC_HIDDEN;
759 void init_mutation(nsIComponentManager*) DECLSPEC_HIDDEN;
760 void init_document_mutation(HTMLDocumentNode*) DECLSPEC_HIDDEN;
761 void release_document_mutation(HTMLDocumentNode*) DECLSPEC_HIDDEN;
763 void HTMLDocument_LockContainer(HTMLDocumentObj*,BOOL) DECLSPEC_HIDDEN;
764 void show_context_menu(HTMLDocumentObj*,DWORD,POINT*,IDispatch*) DECLSPEC_HIDDEN;
765 void notif_focus(HTMLDocumentObj*) DECLSPEC_HIDDEN;
767 void show_tooltip(HTMLDocumentObj*,DWORD,DWORD,LPCWSTR) DECLSPEC_HIDDEN;
768 void hide_tooltip(HTMLDocumentObj*) DECLSPEC_HIDDEN;
769 HRESULT get_client_disp_property(IOleClientSite*,DISPID,VARIANT*) DECLSPEC_HIDDEN;
771 HRESULT ProtocolFactory_Create(REFCLSID,REFIID,void**) DECLSPEC_HIDDEN;
773 BOOL load_gecko(void) DECLSPEC_HIDDEN;
774 void close_gecko(void) DECLSPEC_HIDDEN;
775 void register_nsservice(nsIComponentRegistrar*,nsIServiceManager*) DECLSPEC_HIDDEN;
776 void init_nsio(nsIComponentManager*,nsIComponentRegistrar*) DECLSPEC_HIDDEN;
777 void release_nsio(void) DECLSPEC_HIDDEN;
778 BOOL is_gecko_path(const char*) DECLSPEC_HIDDEN;
780 void init_node_cc(void);
782 HRESULT nsuri_to_url(LPCWSTR,BOOL,BSTR*) DECLSPEC_HIDDEN;
784 HRESULT set_frame_doc(HTMLFrameBase*,nsIDOMDocument*) DECLSPEC_HIDDEN;
786 void call_property_onchanged(ConnectionPoint*,DISPID) DECLSPEC_HIDDEN;
787 HRESULT call_set_active_object(IOleInPlaceUIWindow*,IOleInPlaceActiveObject*) DECLSPEC_HIDDEN;
789 void *nsalloc(size_t) __WINE_ALLOC_SIZE(1) DECLSPEC_HIDDEN;
790 void nsfree(void*) DECLSPEC_HIDDEN;
792 void nsACString_InitDepend(nsACString*,const char*) DECLSPEC_HIDDEN;
793 void nsACString_SetData(nsACString*,const char*) DECLSPEC_HIDDEN;
794 PRUint32 nsACString_GetData(const nsACString*,const char**) DECLSPEC_HIDDEN;
795 void nsACString_Finish(nsACString*) DECLSPEC_HIDDEN;
797 BOOL nsAString_Init(nsAString*,const PRUnichar*) DECLSPEC_HIDDEN;
798 void nsAString_InitDepend(nsAString*,const PRUnichar*) DECLSPEC_HIDDEN;
799 void nsAString_SetData(nsAString*,const PRUnichar*) DECLSPEC_HIDDEN;
800 PRUint32 nsAString_GetData(const nsAString*,const PRUnichar**) DECLSPEC_HIDDEN;
801 void nsAString_Finish(nsAString*) DECLSPEC_HIDDEN;
802 HRESULT return_nsstr(nsresult,nsAString*,BSTR*) DECLSPEC_HIDDEN;
804 nsICommandParams *create_nscommand_params(void) DECLSPEC_HIDDEN;
805 HRESULT nsnode_to_nsstring(nsIDOMNode*,nsAString*) DECLSPEC_HIDDEN;
806 void get_editor_controller(NSContainer*) DECLSPEC_HIDDEN;
807 nsresult get_nsinterface(nsISupports*,REFIID,void**) DECLSPEC_HIDDEN;
808 nsIWritableVariant *create_nsvariant(void) DECLSPEC_HIDDEN;
809 nsresult create_nsfile(const PRUnichar*,nsIFile**) DECLSPEC_HIDDEN;
811 HRESULT create_pending_window(HTMLOuterWindow*,nsChannelBSC*) DECLSPEC_HIDDEN;
812 HRESULT start_binding(HTMLInnerWindow*,BSCallback*,IBindCtx*) DECLSPEC_HIDDEN;
813 HRESULT async_start_doc_binding(HTMLOuterWindow*,HTMLInnerWindow*) DECLSPEC_HIDDEN;
814 void abort_window_bindings(HTMLInnerWindow*) DECLSPEC_HIDDEN;
815 void set_download_state(HTMLDocumentObj*,int) DECLSPEC_HIDDEN;
816 void call_docview_84(HTMLDocumentObj*) DECLSPEC_HIDDEN;
818 void set_ready_state(HTMLOuterWindow*,READYSTATE) DECLSPEC_HIDDEN;
820 HRESULT HTMLSelectionObject_Create(HTMLDocumentNode*,nsISelection*,IHTMLSelectionObject**) DECLSPEC_HIDDEN;
821 HRESULT HTMLTxtRange_Create(HTMLDocumentNode*,nsIDOMRange*,IHTMLTxtRange**) DECLSPEC_HIDDEN;
822 IHTMLStyleSheet *HTMLStyleSheet_Create(nsIDOMStyleSheet*) DECLSPEC_HIDDEN;
823 IHTMLStyleSheetsCollection *HTMLStyleSheetsCollection_Create(nsIDOMStyleSheetList*) DECLSPEC_HIDDEN;
825 void detach_selection(HTMLDocumentNode*) DECLSPEC_HIDDEN;
826 void detach_ranges(HTMLDocumentNode*) DECLSPEC_HIDDEN;
827 HRESULT get_node_text(HTMLDOMNode*,BSTR*) DECLSPEC_HIDDEN;
828 HRESULT replace_node_by_html(nsIDOMHTMLDocument*,nsIDOMNode*,const WCHAR*) DECLSPEC_HIDDEN;
830 HRESULT create_nselem(HTMLDocumentNode*,const WCHAR*,nsIDOMHTMLElement**) DECLSPEC_HIDDEN;
831 HRESULT create_element(HTMLDocumentNode*,const WCHAR*,HTMLElement**) DECLSPEC_HIDDEN;
833 HRESULT HTMLDOMTextNode_Create(HTMLDocumentNode*,nsIDOMNode*,HTMLDOMNode**) DECLSPEC_HIDDEN;
835 struct HTMLAttributeCollection {
836 DispatchEx dispex;
837 IHTMLAttributeCollection IHTMLAttributeCollection_iface;
838 IHTMLAttributeCollection2 IHTMLAttributeCollection2_iface;
839 IHTMLAttributeCollection3 IHTMLAttributeCollection3_iface;
841 LONG ref;
843 HTMLElement *elem;
844 struct list attrs;
847 typedef struct {
848 DispatchEx dispex;
849 IHTMLDOMAttribute IHTMLDOMAttribute_iface;
851 LONG ref;
853 DISPID dispid;
854 HTMLElement *elem;
855 struct list entry;
856 } HTMLDOMAttribute;
858 HRESULT HTMLDOMAttribute_Create(HTMLElement*,DISPID,HTMLDOMAttribute**) DECLSPEC_HIDDEN;
860 HRESULT HTMLElement_Create(HTMLDocumentNode*,nsIDOMNode*,BOOL,HTMLElement**) DECLSPEC_HIDDEN;
861 HRESULT HTMLCommentElement_Create(HTMLDocumentNode*,nsIDOMNode*,HTMLElement**) DECLSPEC_HIDDEN;
862 HRESULT HTMLAnchorElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
863 HRESULT HTMLBodyElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
864 HRESULT HTMLEmbedElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
865 HRESULT HTMLFormElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
866 HRESULT HTMLFrameElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
867 HRESULT HTMLHeadElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
868 HRESULT HTMLIFrame_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
869 HRESULT HTMLStyleElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
870 HRESULT HTMLImgElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
871 HRESULT HTMLInputElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
872 HRESULT HTMLLinkElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
873 HRESULT HTMLMetaElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
874 HRESULT HTMLObjectElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
875 HRESULT HTMLOptionElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
876 HRESULT HTMLScriptElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
877 HRESULT HTMLSelectElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
878 HRESULT HTMLTable_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
879 HRESULT HTMLTableCell_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
880 HRESULT HTMLTableRow_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
881 HRESULT HTMLTextAreaElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
882 HRESULT HTMLTitleElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
883 HRESULT HTMLGenericElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
885 void HTMLDOMNode_Init(HTMLDocumentNode*,HTMLDOMNode*,nsIDOMNode*) DECLSPEC_HIDDEN;
886 void HTMLElement_Init(HTMLElement*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*) DECLSPEC_HIDDEN;
887 void HTMLElement2_Init(HTMLElement*) DECLSPEC_HIDDEN;
888 void HTMLElement3_Init(HTMLElement*) DECLSPEC_HIDDEN;
889 void HTMLTextContainer_Init(HTMLTextContainer*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*) DECLSPEC_HIDDEN;
890 void HTMLFrameBase_Init(HTMLFrameBase*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*) DECLSPEC_HIDDEN;
892 HRESULT HTMLDOMNode_QI(HTMLDOMNode*,REFIID,void**) DECLSPEC_HIDDEN;
893 void HTMLDOMNode_destructor(HTMLDOMNode*) DECLSPEC_HIDDEN;
895 HRESULT HTMLElement_QI(HTMLDOMNode*,REFIID,void**) DECLSPEC_HIDDEN;
896 void HTMLElement_destructor(HTMLDOMNode*) DECLSPEC_HIDDEN;
897 HRESULT HTMLElement_clone(HTMLDOMNode*,nsIDOMNode*,HTMLDOMNode**) DECLSPEC_HIDDEN;
898 HRESULT HTMLElement_get_attr_col(HTMLDOMNode*,HTMLAttributeCollection**) DECLSPEC_HIDDEN;
899 HRESULT HTMLElement_handle_event(HTMLDOMNode*,DWORD,nsIDOMEvent*,BOOL*) DECLSPEC_HIDDEN;
901 HRESULT HTMLFrameBase_QI(HTMLFrameBase*,REFIID,void**) DECLSPEC_HIDDEN;
902 void HTMLFrameBase_destructor(HTMLFrameBase*) DECLSPEC_HIDDEN;
904 HRESULT get_node(HTMLDocumentNode*,nsIDOMNode*,BOOL,HTMLDOMNode**) DECLSPEC_HIDDEN;
905 HRESULT get_elem(HTMLDocumentNode*,nsIDOMElement*,HTMLElement**) DECLSPEC_HIDDEN;
907 HTMLElement *unsafe_impl_from_IHTMLElement(IHTMLElement*) DECLSPEC_HIDDEN;
909 HRESULT search_window_props(HTMLInnerWindow*,BSTR,DWORD,DISPID*) DECLSPEC_HIDDEN;
910 HRESULT get_frame_by_name(HTMLOuterWindow*,const WCHAR*,BOOL,HTMLOuterWindow**) DECLSPEC_HIDDEN;
911 HRESULT get_doc_elem_by_id(HTMLDocumentNode*,const WCHAR*,HTMLElement**) DECLSPEC_HIDDEN;
913 HRESULT wrap_iface(IUnknown*,IUnknown*,IUnknown**) DECLSPEC_HIDDEN;
915 IHTMLElementCollection *create_all_collection(HTMLDOMNode*,BOOL) DECLSPEC_HIDDEN;
916 IHTMLElementCollection *create_collection_from_nodelist(HTMLDocumentNode*,nsIDOMNodeList*) DECLSPEC_HIDDEN;
917 IHTMLElementCollection *create_collection_from_htmlcol(HTMLDocumentNode*,nsIDOMHTMLCollection*) DECLSPEC_HIDDEN;
919 /* commands */
920 typedef struct {
921 DWORD id;
922 HRESULT (*query)(HTMLDocument*,OLECMD*);
923 HRESULT (*exec)(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
924 } cmdtable_t;
926 extern const cmdtable_t editmode_cmds[] DECLSPEC_HIDDEN;
928 void do_ns_command(HTMLDocument*,const char*,nsICommandParams*) DECLSPEC_HIDDEN;
930 /* timer */
931 #define UPDATE_UI 0x0001
932 #define UPDATE_TITLE 0x0002
934 void update_doc(HTMLDocument*,DWORD) DECLSPEC_HIDDEN;
935 void update_title(HTMLDocumentObj*) DECLSPEC_HIDDEN;
937 HRESULT do_query_service(IUnknown*,REFGUID,REFIID,void**) DECLSPEC_HIDDEN;
939 /* editor */
940 void init_editor(HTMLDocument*) DECLSPEC_HIDDEN;
941 void handle_edit_event(HTMLDocument*,nsIDOMEvent*) DECLSPEC_HIDDEN;
942 HRESULT editor_exec_copy(HTMLDocument*,DWORD,VARIANT*,VARIANT*) DECLSPEC_HIDDEN;
943 HRESULT editor_exec_cut(HTMLDocument*,DWORD,VARIANT*,VARIANT*) DECLSPEC_HIDDEN;
944 HRESULT editor_exec_paste(HTMLDocument*,DWORD,VARIANT*,VARIANT*) DECLSPEC_HIDDEN;
945 void handle_edit_load(HTMLDocument*) DECLSPEC_HIDDEN;
946 HRESULT editor_is_dirty(HTMLDocument*) DECLSPEC_HIDDEN;
947 void set_dirty(HTMLDocument*,VARIANT_BOOL) DECLSPEC_HIDDEN;
949 extern DWORD mshtml_tls DECLSPEC_HIDDEN;
951 typedef struct task_t task_t;
952 typedef void (*task_proc_t)(task_t*);
954 struct task_t {
955 LONG target_magic;
956 task_proc_t proc;
957 task_proc_t destr;
958 struct task_t *next;
961 typedef struct {
962 task_t header;
963 HTMLDocumentObj *doc;
964 } docobj_task_t;
966 typedef struct {
967 HWND thread_hwnd;
968 task_t *task_queue_head;
969 task_t *task_queue_tail;
970 struct list timer_list;
971 } thread_data_t;
973 thread_data_t *get_thread_data(BOOL) DECLSPEC_HIDDEN;
974 HWND get_thread_hwnd(void) DECLSPEC_HIDDEN;
976 LONG get_task_target_magic(void) DECLSPEC_HIDDEN;
977 HRESULT push_task(task_t*,task_proc_t,task_proc_t,LONG) DECLSPEC_HIDDEN;
978 void remove_target_tasks(LONG) DECLSPEC_HIDDEN;
980 HRESULT set_task_timer(HTMLInnerWindow*,DWORD,BOOL,IDispatch*,LONG*) DECLSPEC_HIDDEN;
981 HRESULT clear_task_timer(HTMLInnerWindow*,BOOL,DWORD) DECLSPEC_HIDDEN;
983 const char *debugstr_variant(const VARIANT*) DECLSPEC_HIDDEN;
985 DEFINE_GUID(CLSID_AboutProtocol, 0x3050F406, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
986 DEFINE_GUID(CLSID_JSProtocol, 0x3050F3B2, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
987 DEFINE_GUID(CLSID_MailtoProtocol, 0x3050F3DA, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
988 DEFINE_GUID(CLSID_ResProtocol, 0x3050F3BC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
989 DEFINE_GUID(CLSID_SysimageProtocol, 0x76E67A63, 0x06E9, 0x11D2, 0xA8,0x40, 0x00,0x60,0x08,0x05,0x93,0x82);
991 DEFINE_GUID(CLSID_CMarkup,0x3050f4fb,0x98b5,0x11cf,0xbb,0x82,0x00,0xaa,0x00,0xbd,0xce,0x0b);
993 DEFINE_OLEGUID(CGID_DocHostCmdPriv, 0x000214D4L, 0, 0);
995 DEFINE_GUID(CLSID_JScript, 0xf414c260,0x6ac0,0x11cf, 0xb6,0xd1,0x00,0xaa,0x00,0xbb,0xbb,0x58);
996 DEFINE_GUID(CLSID_VBScript, 0xb54f3741,0x5b07,0x11cf, 0xa4,0xb0,0x00,0xaa,0x00,0x4a,0x55,0xe8);
998 /* memory allocation functions */
1000 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
1002 return HeapAlloc(GetProcessHeap(), 0, len);
1005 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len)
1007 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
1010 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t len)
1012 return HeapReAlloc(GetProcessHeap(), 0, mem, len);
1015 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t len)
1017 return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len);
1020 static inline BOOL heap_free(void *mem)
1022 return HeapFree(GetProcessHeap(), 0, mem);
1025 static inline LPWSTR heap_strdupW(LPCWSTR str)
1027 LPWSTR ret = NULL;
1029 if(str) {
1030 DWORD size;
1032 size = (strlenW(str)+1)*sizeof(WCHAR);
1033 ret = heap_alloc(size);
1034 memcpy(ret, str, size);
1037 return ret;
1040 static inline LPWSTR heap_strndupW(LPCWSTR str, unsigned len)
1042 LPWSTR ret = NULL;
1044 if(str) {
1045 ret = heap_alloc((len+1)*sizeof(WCHAR));
1046 memcpy(ret, str, len*sizeof(WCHAR));
1047 ret[len] = 0;
1050 return ret;
1053 static inline char *heap_strdupA(const char *str)
1055 char *ret = NULL;
1057 if(str) {
1058 DWORD size;
1060 size = strlen(str)+1;
1061 ret = heap_alloc(size);
1062 memcpy(ret, str, size);
1065 return ret;
1068 static inline WCHAR *heap_strdupAtoW(const char *str)
1070 LPWSTR ret = NULL;
1072 if(str) {
1073 DWORD len;
1075 len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
1076 ret = heap_alloc(len*sizeof(WCHAR));
1077 MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
1080 return ret;
1083 static inline char *heap_strdupWtoA(LPCWSTR str)
1085 char *ret = NULL;
1087 if(str) {
1088 DWORD size = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
1089 ret = heap_alloc(size);
1090 WideCharToMultiByte(CP_ACP, 0, str, -1, ret, size, NULL, NULL);
1093 return ret;
1096 static inline void windowref_addref(windowref_t *ref)
1098 InterlockedIncrement(&ref->ref);
1101 static inline void windowref_release(windowref_t *ref)
1103 if(!InterlockedDecrement(&ref->ref))
1104 heap_free(ref);
1107 HDC get_display_dc(void) DECLSPEC_HIDDEN;
1108 HINSTANCE get_shdoclc(void) DECLSPEC_HIDDEN;
1109 void set_statustext(HTMLDocumentObj*,INT,LPCWSTR) DECLSPEC_HIDDEN;
1111 extern HINSTANCE hInst DECLSPEC_HIDDEN;