mshtml: Moved option_factory from HTMLOuterWindow to HTMLInnerWindow.
[wine/multimedia.git] / dlls / mshtml / mshtml_private.h
blob35800d8a497ed8fcf163a695fba8e3f094c0c1d8
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(DispHTMLLocation) \
96 XDIID(DispHTMLMetaElement) \
97 XDIID(DispHTMLNavigator) \
98 XDIID(DispHTMLObjectElement) \
99 XDIID(DispHTMLOptionElement) \
100 XDIID(DispHTMLScreen) \
101 XDIID(DispHTMLScriptElement) \
102 XDIID(DispHTMLSelectElement) \
103 XDIID(DispHTMLStyle) \
104 XDIID(DispHTMLStyleElement) \
105 XDIID(DispHTMLStyleSheetsCollection) \
106 XDIID(DispHTMLTable) \
107 XDIID(DispHTMLTableCell) \
108 XDIID(DispHTMLTableRow) \
109 XDIID(DispHTMLTextAreaElement) \
110 XDIID(DispHTMLTitleElement) \
111 XDIID(DispHTMLUnknownElement) \
112 XDIID(DispHTMLWindow2) \
113 XDIID(HTMLDocumentEvents) \
114 XIID(IHTMLAnchorElement) \
115 XIID(IHTMLAttributeCollection) \
116 XIID(IHTMLAttributeCollection2) \
117 XIID(IHTMLAttributeCollection3) \
118 XIID(IHTMLBodyElement) \
119 XIID(IHTMLBodyElement2) \
120 XIID(IHTMLCommentElement) \
121 XIID(IHTMLCurrentStyle) \
122 XIID(IHTMLCurrentStyle2) \
123 XIID(IHTMLCurrentStyle3) \
124 XIID(IHTMLCurrentStyle4) \
125 XIID(IHTMLDocument2) \
126 XIID(IHTMLDocument3) \
127 XIID(IHTMLDocument4) \
128 XIID(IHTMLDocument5) \
129 XIID(IHTMLDOMAttribute) \
130 XIID(IHTMLDOMChildrenCollection) \
131 XIID(IHTMLDOMNode) \
132 XIID(IHTMLDOMNode2) \
133 XIID(IHTMLDOMTextNode) \
134 XIID(IHTMLElement) \
135 XIID(IHTMLElement2) \
136 XIID(IHTMLElement3) \
137 XIID(IHTMLElement4) \
138 XIID(IHTMLElementCollection) \
139 XIID(IHTMLEmbedElement) \
140 XIID(IHTMLEventObj) \
141 XIID(IHTMLFiltersCollection) \
142 XIID(IHTMLFormElement) \
143 XIID(IHTMLFrameBase) \
144 XIID(IHTMLFrameBase2) \
145 XIID(IHTMLFrameElement3) \
146 XIID(IHTMLGenericElement) \
147 XIID(IHTMLHeadElement) \
148 XIID(IHTMLIFrameElement) \
149 XIID(IHTMLImageElementFactory) \
150 XIID(IHTMLImgElement) \
151 XIID(IHTMLInputElement) \
152 XIID(IHTMLLocation) \
153 XIID(IHTMLMetaElement) \
154 XIID(IHTMLMimeTypesCollection) \
155 XIID(IHTMLObjectElement) \
156 XIID(IHTMLObjectElement2) \
157 XIID(IHTMLOptionElement) \
158 XIID(IHTMLPluginsCollection) \
159 XIID(IHTMLRect) \
160 XIID(IHTMLScreen) \
161 XIID(IHTMLScriptElement) \
162 XIID(IHTMLSelectElement) \
163 XIID(IHTMLStyle) \
164 XIID(IHTMLStyle2) \
165 XIID(IHTMLStyle3) \
166 XIID(IHTMLStyle4) \
167 XIID(IHTMLStyle5) \
168 XIID(IHTMLStyle6) \
169 XIID(IHTMLStyleElement) \
170 XIID(IHTMLStyleSheetsCollection) \
171 XIID(IHTMLTable) \
172 XIID(IHTMLTable2) \
173 XIID(IHTMLTable3) \
174 XIID(IHTMLTableCell) \
175 XIID(IHTMLTableRow) \
176 XIID(IHTMLTextAreaElement) \
177 XIID(IHTMLTextContainer) \
178 XIID(IHTMLTitleElement) \
179 XIID(IHTMLUniqueName) \
180 XIID(IHTMLWindow2) \
181 XIID(IHTMLWindow3) \
182 XIID(IHTMLWindow4) \
183 XIID(IHTMLWindow6) \
184 XIID(IOmHistory) \
185 XIID(IOmNavigator)
187 typedef enum {
188 #define XIID(iface) iface ## _tid,
189 #define XDIID(iface) iface ## _tid,
190 TID_LIST
191 #undef XIID
192 #undef XDIID
193 LAST_tid
194 } tid_t;
196 typedef struct dispex_data_t dispex_data_t;
197 typedef struct dispex_dynamic_data_t dispex_dynamic_data_t;
199 #define MSHTML_DISPID_CUSTOM_MIN 0x60000000
200 #define MSHTML_DISPID_CUSTOM_MAX 0x6fffffff
201 #define MSHTML_CUSTOM_DISPID_CNT (MSHTML_DISPID_CUSTOM_MAX-MSHTML_DISPID_CUSTOM_MIN)
203 typedef struct DispatchEx DispatchEx;
205 typedef struct {
206 HRESULT (*value)(DispatchEx*,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
207 HRESULT (*get_dispid)(DispatchEx*,BSTR,DWORD,DISPID*);
208 HRESULT (*invoke)(DispatchEx*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
209 HRESULT (*populate_props)(DispatchEx*);
210 } dispex_static_data_vtbl_t;
212 typedef struct {
213 const dispex_static_data_vtbl_t *vtbl;
214 const tid_t disp_tid;
215 dispex_data_t *data;
216 const tid_t* const iface_tids;
217 } dispex_static_data_t;
219 struct DispatchEx {
220 IDispatchEx IDispatchEx_iface;
222 IUnknown *outer;
224 dispex_static_data_t *data;
225 dispex_dynamic_data_t *dynamic_data;
228 void init_dispex(DispatchEx*,IUnknown*,dispex_static_data_t*) DECLSPEC_HIDDEN;
229 void release_dispex(DispatchEx*) DECLSPEC_HIDDEN;
230 BOOL dispex_query_interface(DispatchEx*,REFIID,void**) DECLSPEC_HIDDEN;
231 HRESULT dispex_get_dprop_ref(DispatchEx*,const WCHAR*,BOOL,VARIANT**) DECLSPEC_HIDDEN;
232 HRESULT get_dispids(tid_t,DWORD*,DISPID**) DECLSPEC_HIDDEN;
233 HRESULT remove_prop(DispatchEx*,BSTR,VARIANT_BOOL*) DECLSPEC_HIDDEN;
234 HRESULT dispex_get_dynid(DispatchEx*,const WCHAR*,DISPID*) DECLSPEC_HIDDEN;
235 void release_typelib(void) DECLSPEC_HIDDEN;
236 HRESULT get_htmldoc_classinfo(ITypeInfo **typeinfo) DECLSPEC_HIDDEN;
238 typedef struct HTMLWindow HTMLWindow;
239 typedef struct HTMLInnerWindow HTMLInnerWindow;
240 typedef struct HTMLOuterWindow HTMLOuterWindow;
241 typedef struct HTMLDocumentNode HTMLDocumentNode;
242 typedef struct HTMLDocumentObj HTMLDocumentObj;
243 typedef struct HTMLFrameBase HTMLFrameBase;
244 typedef struct NSContainer NSContainer;
245 typedef struct HTMLAttributeCollection HTMLAttributeCollection;
247 typedef enum {
248 SCRIPTMODE_GECKO,
249 SCRIPTMODE_ACTIVESCRIPT
250 } SCRIPTMODE;
252 typedef struct ScriptHost ScriptHost;
254 typedef enum {
255 GLOBAL_SCRIPTVAR,
256 GLOBAL_ELEMENTVAR,
257 GLOBAL_DISPEXVAR
258 } global_prop_type_t;
260 typedef struct {
261 global_prop_type_t type;
262 WCHAR *name;
263 ScriptHost *script_host;
264 DISPID id;
265 } global_prop_t;
267 typedef struct {
268 IHTMLOptionElementFactory IHTMLOptionElementFactory_iface;
270 LONG ref;
272 HTMLInnerWindow *window;
273 } HTMLOptionElementFactory;
275 typedef struct {
276 DispatchEx dispex;
277 IHTMLImageElementFactory IHTMLImageElementFactory_iface;
279 LONG ref;
281 HTMLOuterWindow *window;
282 } HTMLImageElementFactory;
284 struct HTMLLocation {
285 DispatchEx dispex;
286 IHTMLLocation IHTMLLocation_iface;
288 LONG ref;
290 HTMLOuterWindow *window;
293 typedef struct {
294 HTMLOuterWindow *window;
295 LONG ref;
296 } windowref_t;
298 typedef struct nsChannelBSC nsChannelBSC;
300 struct HTMLWindow {
301 IHTMLWindow2 IHTMLWindow2_iface;
302 IHTMLWindow3 IHTMLWindow3_iface;
303 IHTMLWindow4 IHTMLWindow4_iface;
304 IHTMLWindow5 IHTMLWindow5_iface;
305 IHTMLWindow6 IHTMLWindow6_iface;
306 IHTMLPrivateWindow IHTMLPrivateWindow_iface;
307 IDispatchEx IDispatchEx_iface;
308 IServiceProvider IServiceProvider_iface;
309 ITravelLogClient ITravelLogClient_iface;
311 LONG ref;
313 HTMLInnerWindow *inner_window;
314 HTMLOuterWindow *outer_window;
317 struct HTMLOuterWindow {
318 HTMLWindow base;
320 windowref_t *window_ref;
321 LONG task_magic;
323 HTMLDocumentObj *doc_obj;
324 nsIDOMWindow *nswindow;
325 HTMLOuterWindow *parent;
326 HTMLFrameBase *frame_element;
327 READYSTATE readystate;
329 nsChannelBSC *bscallback;
330 IMoniker *mon;
331 IUri *uri;
332 BSTR url;
334 IHTMLEventObj *event;
336 SCRIPTMODE scriptmode;
337 struct list script_hosts;
339 IInternetSecurityManager *secmgr;
341 HTMLImageElementFactory *image_factory;
342 HTMLLocation *location;
343 IHTMLScreen *screen;
344 IOmHistory *history;
346 struct list children;
347 struct list sibling_entry;
348 struct list entry;
351 struct HTMLInnerWindow {
352 HTMLWindow base;
353 DispatchEx dispex;
355 HTMLDocumentNode *doc;
357 HTMLOptionElementFactory *option_factory;
359 global_prop_t *global_props;
360 DWORD global_prop_cnt;
361 DWORD global_prop_size;
364 typedef enum {
365 UNKNOWN_USERMODE,
366 BROWSEMODE,
367 EDITMODE
368 } USERMODE;
370 typedef struct _cp_static_data_t {
371 tid_t tid;
372 void (*on_advise)(IUnknown*,struct _cp_static_data_t*);
373 DWORD id_cnt;
374 DISPID *ids;
375 } cp_static_data_t;
377 typedef struct ConnectionPointContainer {
378 IConnectionPointContainer IConnectionPointContainer_iface;
380 ConnectionPoint *cp_list;
381 IUnknown *outer;
382 struct ConnectionPointContainer *forward_container;
383 } ConnectionPointContainer;
385 struct ConnectionPoint {
386 IConnectionPoint IConnectionPoint_iface;
388 ConnectionPointContainer *container;
390 union {
391 IUnknown *unk;
392 IDispatch *disp;
393 IPropertyNotifySink *propnotif;
394 } *sinks;
395 DWORD sinks_size;
397 const IID *iid;
398 cp_static_data_t *data;
400 ConnectionPoint *next;
403 struct HTMLDocument {
404 IHTMLDocument2 IHTMLDocument2_iface;
405 IHTMLDocument3 IHTMLDocument3_iface;
406 IHTMLDocument4 IHTMLDocument4_iface;
407 IHTMLDocument5 IHTMLDocument5_iface;
408 IHTMLDocument6 IHTMLDocument6_iface;
409 IPersistMoniker IPersistMoniker_iface;
410 IPersistFile IPersistFile_iface;
411 IPersistHistory IPersistHistory_iface;
412 IMonikerProp IMonikerProp_iface;
413 IOleObject IOleObject_iface;
414 IOleDocument IOleDocument_iface;
415 IOleDocumentView IOleDocumentView_iface;
416 IOleInPlaceActiveObject IOleInPlaceActiveObject_iface;
417 IViewObjectEx IViewObjectEx_iface;
418 IOleInPlaceObjectWindowless IOleInPlaceObjectWindowless_iface;
419 IServiceProvider IServiceProvider_iface;
420 IOleCommandTarget IOleCommandTarget_iface;
421 IOleControl IOleControl_iface;
422 IHlinkTarget IHlinkTarget_iface;
423 IPersistStreamInit IPersistStreamInit_iface;
424 IDispatchEx IDispatchEx_iface;
425 ISupportErrorInfo ISupportErrorInfo_iface;
426 IObjectWithSite IObjectWithSite_iface;
427 IOleContainer IOleContainer_iface;
428 IObjectSafety IObjectSafety_iface;
429 IProvideClassInfo IProvideClassInfo_iface;
431 IUnknown *unk_impl;
432 IDispatchEx *dispex;
434 HTMLDocumentObj *doc_obj;
435 HTMLDocumentNode *doc_node;
437 HTMLOuterWindow *window;
439 LONG task_magic;
441 ConnectionPointContainer cp_container;
442 ConnectionPoint cp_htmldocevents;
443 ConnectionPoint cp_htmldocevents2;
444 ConnectionPoint cp_propnotif;
445 ConnectionPoint cp_dispatch;
447 IOleAdviseHolder *advise_holder;
450 static inline HRESULT htmldoc_query_interface(HTMLDocument *This, REFIID riid, void **ppv)
452 return IUnknown_QueryInterface(This->unk_impl, riid, ppv);
455 static inline ULONG htmldoc_addref(HTMLDocument *This)
457 return IUnknown_AddRef(This->unk_impl);
460 static inline ULONG htmldoc_release(HTMLDocument *This)
462 return IUnknown_Release(This->unk_impl);
465 struct HTMLDocumentObj {
466 HTMLDocument basedoc;
467 DispatchEx dispex;
468 ICustomDoc ICustomDoc_iface;
469 ITargetContainer ITargetContainer_iface;
471 IWindowForBindingUI IWindowForBindingUI_iface;
473 LONG ref;
475 NSContainer *nscontainer;
477 IOleClientSite *client;
478 IDocHostUIHandler *hostui;
479 BOOL custom_hostui;
480 IOleInPlaceSite *ipsite;
481 IOleInPlaceFrame *frame;
482 IOleInPlaceUIWindow *ip_window;
483 IAdviseSink *view_sink;
484 IDocObjectService *doc_object_service;
486 DOCHOSTUIINFO hostinfo;
488 IOleUndoManager *undomgr;
490 HWND hwnd;
491 HWND tooltips_hwnd;
493 BOOL request_uiactivate;
494 BOOL in_place_active;
495 BOOL ui_active;
496 BOOL window_active;
497 BOOL hostui_setup;
498 BOOL is_webbrowser;
499 BOOL container_locked;
500 BOOL focus;
501 BOOL has_popup;
502 INT download_state;
504 USERMODE usermode;
505 LPWSTR mime;
507 DWORD update;
510 typedef struct nsWeakReference nsWeakReference;
512 struct NSContainer {
513 nsIWebBrowserChrome nsIWebBrowserChrome_iface;
514 nsIContextMenuListener nsIContextMenuListener_iface;
515 nsIURIContentListener nsIURIContentListener_iface;
516 nsIEmbeddingSiteWindow nsIEmbeddingSiteWindow_iface;
517 nsITooltipListener nsITooltipListener_iface;
518 nsIInterfaceRequestor nsIInterfaceRequestor_iface;
519 nsISupportsWeakReference nsISupportsWeakReference_iface;
521 nsIWebBrowser *webbrowser;
522 nsIWebNavigation *navigation;
523 nsIBaseWindow *window;
524 nsIWebBrowserFocus *focus;
526 nsIEditor *editor;
527 nsIController *editor_controller;
529 LONG ref;
531 nsWeakReference *weak_reference;
533 NSContainer *parent;
534 HTMLDocumentObj *doc;
536 nsIURIContentListener *content_listener;
538 HWND hwnd;
541 typedef struct {
542 HRESULT (*qi)(HTMLDOMNode*,REFIID,void**);
543 void (*destructor)(HTMLDOMNode*);
544 HRESULT (*clone)(HTMLDOMNode*,nsIDOMNode*,HTMLDOMNode**);
545 HRESULT (*get_attr_col)(HTMLDOMNode*,HTMLAttributeCollection**);
546 event_target_t **(*get_event_target)(HTMLDOMNode*);
547 HRESULT (*fire_event)(HTMLDOMNode*,DWORD,BOOL*);
548 HRESULT (*handle_event)(HTMLDOMNode*,DWORD,nsIDOMEvent*,BOOL*);
549 HRESULT (*put_disabled)(HTMLDOMNode*,VARIANT_BOOL);
550 HRESULT (*get_disabled)(HTMLDOMNode*,VARIANT_BOOL*);
551 HRESULT (*get_document)(HTMLDOMNode*,IDispatch**);
552 HRESULT (*get_readystate)(HTMLDOMNode*,BSTR*);
553 HRESULT (*get_dispid)(HTMLDOMNode*,BSTR,DWORD,DISPID*);
554 HRESULT (*invoke)(HTMLDOMNode*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
555 HRESULT (*bind_to_tree)(HTMLDOMNode*);
556 } NodeImplVtbl;
558 struct HTMLDOMNode {
559 DispatchEx dispex;
560 IHTMLDOMNode IHTMLDOMNode_iface;
561 IHTMLDOMNode2 IHTMLDOMNode2_iface;
562 const NodeImplVtbl *vtbl;
564 LONG ref;
566 nsIDOMNode *nsnode;
567 HTMLDocumentNode *doc;
568 event_target_t *event_target;
569 ConnectionPointContainer *cp_container;
571 HTMLDOMNode *next;
574 static inline void node_release(HTMLDOMNode *node)
576 IHTMLDOMNode_Release(&node->IHTMLDOMNode_iface);
579 typedef struct {
580 HTMLDOMNode node;
581 ConnectionPointContainer cp_container;
583 IHTMLElement IHTMLElement_iface;
584 IHTMLElement2 IHTMLElement2_iface;
585 IHTMLElement3 IHTMLElement3_iface;
586 IHTMLElement4 IHTMLElement4_iface;
588 nsIDOMHTMLElement *nselem;
589 HTMLStyle *style;
590 HTMLAttributeCollection *attrs;
591 WCHAR *filter;
592 } HTMLElement;
594 #define HTMLELEMENT_TIDS \
595 IHTMLDOMNode_tid, \
596 IHTMLDOMNode2_tid, \
597 IHTMLElement_tid, \
598 IHTMLElement2_tid, \
599 IHTMLElement3_tid, \
600 IHTMLElement4_tid
602 typedef struct {
603 HTMLElement element;
605 IHTMLTextContainer IHTMLTextContainer_iface;
607 ConnectionPoint cp;
608 } HTMLTextContainer;
610 struct HTMLFrameBase {
611 HTMLElement element;
613 IHTMLFrameBase IHTMLFrameBase_iface;
614 IHTMLFrameBase2 IHTMLFrameBase2_iface;
616 HTMLOuterWindow *content_window;
618 nsIDOMHTMLFrameElement *nsframe;
619 nsIDOMHTMLIFrameElement *nsiframe;
622 typedef struct nsDocumentEventListener nsDocumentEventListener;
624 struct HTMLDocumentNode {
625 HTMLDOMNode node;
626 HTMLDocument basedoc;
628 IInternetHostSecurityManager IInternetHostSecurityManager_iface;
630 nsIDocumentObserver nsIDocumentObserver_iface;
632 LONG ref;
634 nsIDOMHTMLDocument *nsdoc;
635 HTMLDOMNode *nodes;
636 BOOL content_ready;
637 event_target_t *body_event_target;
639 ICatInformation *catmgr;
640 nsDocumentEventListener *nsevent_listener;
641 BOOL *event_vector;
643 WCHAR **elem_vars;
644 unsigned elem_vars_size;
645 unsigned elem_vars_cnt;
647 BOOL skip_mutation_notif;
649 struct list bindings;
650 struct list selection_list;
651 struct list range_list;
652 struct list plugin_hosts;
655 HRESULT HTMLDocument_Create(IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
656 HRESULT HTMLLoadOptions_Create(IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
657 HRESULT create_doc_from_nsdoc(nsIDOMHTMLDocument*,HTMLDocumentObj*,HTMLOuterWindow*,HTMLDocumentNode**) DECLSPEC_HIDDEN;
658 HRESULT create_document_fragment(nsIDOMNode*,HTMLDocumentNode*,HTMLDocumentNode**) DECLSPEC_HIDDEN;
660 HRESULT HTMLOuterWindow_Create(HTMLDocumentObj*,nsIDOMWindow*,HTMLOuterWindow*,HTMLOuterWindow**) DECLSPEC_HIDDEN;
661 HRESULT update_window_doc(HTMLOuterWindow*) DECLSPEC_HIDDEN;
662 HTMLOuterWindow *nswindow_to_window(const nsIDOMWindow*) DECLSPEC_HIDDEN;
663 void get_top_window(HTMLOuterWindow*,HTMLOuterWindow**) DECLSPEC_HIDDEN;
664 HRESULT HTMLOptionElementFactory_Create(HTMLInnerWindow*,HTMLOptionElementFactory**) DECLSPEC_HIDDEN;
665 HTMLImageElementFactory *HTMLImageElementFactory_Create(HTMLOuterWindow*) DECLSPEC_HIDDEN;
666 HRESULT HTMLLocation_Create(HTMLOuterWindow*,HTMLLocation**) DECLSPEC_HIDDEN;
667 IOmNavigator *OmNavigator_Create(void) DECLSPEC_HIDDEN;
668 HRESULT HTMLScreen_Create(IHTMLScreen**) DECLSPEC_HIDDEN;
669 HRESULT create_history(IOmHistory**) DECLSPEC_HIDDEN;
671 void HTMLDocument_HTMLDocument3_Init(HTMLDocument*) DECLSPEC_HIDDEN;
672 void HTMLDocument_HTMLDocument5_Init(HTMLDocument*) DECLSPEC_HIDDEN;
673 void HTMLDocument_Persist_Init(HTMLDocument*) DECLSPEC_HIDDEN;
674 void HTMLDocument_OleCmd_Init(HTMLDocument*) DECLSPEC_HIDDEN;
675 void HTMLDocument_OleObj_Init(HTMLDocument*) DECLSPEC_HIDDEN;
676 void HTMLDocument_View_Init(HTMLDocument*) DECLSPEC_HIDDEN;
677 void HTMLDocument_Window_Init(HTMLDocument*) DECLSPEC_HIDDEN;
678 void HTMLDocument_Service_Init(HTMLDocument*) DECLSPEC_HIDDEN;
679 void HTMLDocument_Hlink_Init(HTMLDocument*) DECLSPEC_HIDDEN;
681 void TargetContainer_Init(HTMLDocumentObj*) DECLSPEC_HIDDEN;
682 void init_binding_ui(HTMLDocumentObj*) DECLSPEC_HIDDEN;
684 void HTMLDocumentNode_SecMgr_Init(HTMLDocumentNode*) DECLSPEC_HIDDEN;
686 HRESULT HTMLCurrentStyle_Create(HTMLElement*,IHTMLCurrentStyle**) DECLSPEC_HIDDEN;
688 void ConnectionPoint_Init(ConnectionPoint*,ConnectionPointContainer*,REFIID,cp_static_data_t*) DECLSPEC_HIDDEN;
689 void ConnectionPointContainer_Init(ConnectionPointContainer*,IUnknown*) DECLSPEC_HIDDEN;
690 void ConnectionPointContainer_Destroy(ConnectionPointContainer*) DECLSPEC_HIDDEN;
692 HRESULT create_nscontainer(HTMLDocumentObj*,NSContainer**) DECLSPEC_HIDDEN;
693 void NSContainer_Release(NSContainer*) DECLSPEC_HIDDEN;
695 void init_mutation(nsIComponentManager*) DECLSPEC_HIDDEN;
696 void init_document_mutation(HTMLDocumentNode*) DECLSPEC_HIDDEN;
697 void release_document_mutation(HTMLDocumentNode*) DECLSPEC_HIDDEN;
699 void HTMLDocument_LockContainer(HTMLDocumentObj*,BOOL) DECLSPEC_HIDDEN;
700 void show_context_menu(HTMLDocumentObj*,DWORD,POINT*,IDispatch*) DECLSPEC_HIDDEN;
701 void notif_focus(HTMLDocumentObj*) DECLSPEC_HIDDEN;
703 void show_tooltip(HTMLDocumentObj*,DWORD,DWORD,LPCWSTR) DECLSPEC_HIDDEN;
704 void hide_tooltip(HTMLDocumentObj*) DECLSPEC_HIDDEN;
705 HRESULT get_client_disp_property(IOleClientSite*,DISPID,VARIANT*) DECLSPEC_HIDDEN;
707 HRESULT ProtocolFactory_Create(REFCLSID,REFIID,void**) DECLSPEC_HIDDEN;
709 BOOL load_gecko(void) DECLSPEC_HIDDEN;
710 void close_gecko(void) DECLSPEC_HIDDEN;
711 void register_nsservice(nsIComponentRegistrar*,nsIServiceManager*) DECLSPEC_HIDDEN;
712 void init_nsio(nsIComponentManager*,nsIComponentRegistrar*) DECLSPEC_HIDDEN;
713 void release_nsio(void) DECLSPEC_HIDDEN;
714 BOOL is_gecko_path(const char*) DECLSPEC_HIDDEN;
716 HRESULT nsuri_to_url(LPCWSTR,BOOL,BSTR*) DECLSPEC_HIDDEN;
717 BOOL compare_ignoring_frag(IUri*,IUri*) DECLSPEC_HIDDEN;
719 HRESULT navigate_url(HTMLOuterWindow*,const WCHAR*,const WCHAR*) DECLSPEC_HIDDEN;
720 HRESULT set_frame_doc(HTMLFrameBase*,nsIDOMDocument*) DECLSPEC_HIDDEN;
722 void call_property_onchanged(ConnectionPoint*,DISPID) DECLSPEC_HIDDEN;
723 HRESULT call_set_active_object(IOleInPlaceUIWindow*,IOleInPlaceActiveObject*) DECLSPEC_HIDDEN;
725 void *nsalloc(size_t) __WINE_ALLOC_SIZE(1) DECLSPEC_HIDDEN;
726 void nsfree(void*) DECLSPEC_HIDDEN;
728 void nsACString_InitDepend(nsACString*,const char*) DECLSPEC_HIDDEN;
729 void nsACString_SetData(nsACString*,const char*) DECLSPEC_HIDDEN;
730 PRUint32 nsACString_GetData(const nsACString*,const char**) DECLSPEC_HIDDEN;
731 void nsACString_Finish(nsACString*) DECLSPEC_HIDDEN;
733 BOOL nsAString_Init(nsAString*,const PRUnichar*) DECLSPEC_HIDDEN;
734 void nsAString_InitDepend(nsAString*,const PRUnichar*) DECLSPEC_HIDDEN;
735 void nsAString_SetData(nsAString*,const PRUnichar*) DECLSPEC_HIDDEN;
736 PRUint32 nsAString_GetData(const nsAString*,const PRUnichar**) DECLSPEC_HIDDEN;
737 void nsAString_Finish(nsAString*) DECLSPEC_HIDDEN;
738 HRESULT return_nsstr(nsresult,nsAString*,BSTR*) DECLSPEC_HIDDEN;
740 nsICommandParams *create_nscommand_params(void) DECLSPEC_HIDDEN;
741 HRESULT nsnode_to_nsstring(nsIDOMNode*,nsAString*) DECLSPEC_HIDDEN;
742 void get_editor_controller(NSContainer*) DECLSPEC_HIDDEN;
743 nsresult get_nsinterface(nsISupports*,REFIID,void**) DECLSPEC_HIDDEN;
744 nsIWritableVariant *create_nsvariant(void) DECLSPEC_HIDDEN;
746 void set_window_bscallback(HTMLOuterWindow*,nsChannelBSC*) DECLSPEC_HIDDEN;
747 void set_current_mon(HTMLOuterWindow*,IMoniker*) DECLSPEC_HIDDEN;
748 void set_current_uri(HTMLOuterWindow*,IUri*) DECLSPEC_HIDDEN;
749 HRESULT start_binding(HTMLOuterWindow*,HTMLDocumentNode*,BSCallback*,IBindCtx*) DECLSPEC_HIDDEN;
750 HRESULT async_start_doc_binding(HTMLOuterWindow*,nsChannelBSC*) DECLSPEC_HIDDEN;
751 void abort_document_bindings(HTMLDocumentNode*) DECLSPEC_HIDDEN;
752 void set_download_state(HTMLDocumentObj*,int) DECLSPEC_HIDDEN;
753 void call_docview_84(HTMLDocumentObj*) DECLSPEC_HIDDEN;
755 HRESULT bind_mon_to_buffer(HTMLDocumentNode*,IMoniker*,void**,DWORD*) DECLSPEC_HIDDEN;
757 void set_ready_state(HTMLOuterWindow*,READYSTATE) DECLSPEC_HIDDEN;
759 HRESULT HTMLSelectionObject_Create(HTMLDocumentNode*,nsISelection*,IHTMLSelectionObject**) DECLSPEC_HIDDEN;
760 HRESULT HTMLTxtRange_Create(HTMLDocumentNode*,nsIDOMRange*,IHTMLTxtRange**) DECLSPEC_HIDDEN;
761 HRESULT HTMLStyle_Create(HTMLElement*,nsIDOMCSSStyleDeclaration*,HTMLStyle**) DECLSPEC_HIDDEN;
762 IHTMLStyleSheet *HTMLStyleSheet_Create(nsIDOMStyleSheet*) DECLSPEC_HIDDEN;
763 IHTMLStyleSheetsCollection *HTMLStyleSheetsCollection_Create(nsIDOMStyleSheetList*) DECLSPEC_HIDDEN;
765 void detach_selection(HTMLDocumentNode*) DECLSPEC_HIDDEN;
766 void detach_ranges(HTMLDocumentNode*) DECLSPEC_HIDDEN;
767 HRESULT get_node_text(HTMLDOMNode*,BSTR*) DECLSPEC_HIDDEN;
768 HRESULT replace_node_by_html(nsIDOMHTMLDocument*,nsIDOMNode*,const WCHAR*) DECLSPEC_HIDDEN;
770 HRESULT create_nselem(HTMLDocumentNode*,const WCHAR*,nsIDOMHTMLElement**) DECLSPEC_HIDDEN;
772 HRESULT HTMLDOMTextNode_Create(HTMLDocumentNode*,nsIDOMNode*,HTMLDOMNode**) DECLSPEC_HIDDEN;
774 struct HTMLAttributeCollection {
775 DispatchEx dispex;
776 IHTMLAttributeCollection IHTMLAttributeCollection_iface;
777 IHTMLAttributeCollection2 IHTMLAttributeCollection2_iface;
778 IHTMLAttributeCollection3 IHTMLAttributeCollection3_iface;
780 LONG ref;
782 HTMLElement *elem;
783 struct list attrs;
786 typedef struct {
787 DispatchEx dispex;
788 IHTMLDOMAttribute IHTMLDOMAttribute_iface;
790 LONG ref;
792 DISPID dispid;
793 HTMLElement *elem;
794 struct list entry;
795 } HTMLDOMAttribute;
797 HRESULT HTMLDOMAttribute_Create(HTMLElement*,DISPID,HTMLDOMAttribute**) DECLSPEC_HIDDEN;
799 HRESULT HTMLElement_Create(HTMLDocumentNode*,nsIDOMNode*,BOOL,HTMLElement**) DECLSPEC_HIDDEN;
800 HRESULT HTMLCommentElement_Create(HTMLDocumentNode*,nsIDOMNode*,HTMLElement**) DECLSPEC_HIDDEN;
801 HRESULT HTMLAnchorElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
802 HRESULT HTMLBodyElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
803 HRESULT HTMLEmbedElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
804 HRESULT HTMLFormElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
805 HRESULT HTMLFrameElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
806 HRESULT HTMLHeadElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
807 HRESULT HTMLIFrame_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
808 HRESULT HTMLStyleElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
809 HRESULT HTMLImgElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
810 HRESULT HTMLInputElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
811 HRESULT HTMLMetaElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
812 HRESULT HTMLObjectElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
813 HRESULT HTMLOptionElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
814 HRESULT HTMLScriptElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
815 HRESULT HTMLSelectElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
816 HRESULT HTMLTable_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
817 HRESULT HTMLTableCell_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
818 HRESULT HTMLTableRow_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
819 HRESULT HTMLTextAreaElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
820 HRESULT HTMLTitleElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
821 HRESULT HTMLGenericElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
823 void HTMLDOMNode_Init(HTMLDocumentNode*,HTMLDOMNode*,nsIDOMNode*) DECLSPEC_HIDDEN;
824 void HTMLElement_Init(HTMLElement*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*) DECLSPEC_HIDDEN;
825 void HTMLElement2_Init(HTMLElement*) DECLSPEC_HIDDEN;
826 void HTMLElement3_Init(HTMLElement*) DECLSPEC_HIDDEN;
827 void HTMLTextContainer_Init(HTMLTextContainer*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*) DECLSPEC_HIDDEN;
828 void HTMLFrameBase_Init(HTMLFrameBase*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*) DECLSPEC_HIDDEN;
830 HRESULT HTMLDOMNode_QI(HTMLDOMNode*,REFIID,void**) DECLSPEC_HIDDEN;
831 void HTMLDOMNode_destructor(HTMLDOMNode*) DECLSPEC_HIDDEN;
833 HRESULT HTMLElement_QI(HTMLDOMNode*,REFIID,void**) DECLSPEC_HIDDEN;
834 void HTMLElement_destructor(HTMLDOMNode*) DECLSPEC_HIDDEN;
835 HRESULT HTMLElement_clone(HTMLDOMNode*,nsIDOMNode*,HTMLDOMNode**) DECLSPEC_HIDDEN;
836 HRESULT HTMLElement_get_attr_col(HTMLDOMNode*,HTMLAttributeCollection**) DECLSPEC_HIDDEN;
838 HRESULT HTMLFrameBase_QI(HTMLFrameBase*,REFIID,void**) DECLSPEC_HIDDEN;
839 void HTMLFrameBase_destructor(HTMLFrameBase*) DECLSPEC_HIDDEN;
841 HRESULT get_node(HTMLDocumentNode*,nsIDOMNode*,BOOL,HTMLDOMNode**) DECLSPEC_HIDDEN;
842 void release_nodes(HTMLDocumentNode*) DECLSPEC_HIDDEN;
844 HTMLElement *unsafe_impl_from_IHTMLElement(IHTMLElement*) DECLSPEC_HIDDEN;
846 void release_script_hosts(HTMLOuterWindow*) DECLSPEC_HIDDEN;
847 void connect_scripts(HTMLOuterWindow*) DECLSPEC_HIDDEN;
848 void doc_insert_script(HTMLOuterWindow*,nsIDOMHTMLScriptElement*) DECLSPEC_HIDDEN;
849 IDispatch *script_parse_event(HTMLOuterWindow*,LPCWSTR) DECLSPEC_HIDDEN;
850 HRESULT exec_script(HTMLOuterWindow*,const WCHAR*,const WCHAR*,VARIANT*) DECLSPEC_HIDDEN;
851 void set_script_mode(HTMLOuterWindow*,SCRIPTMODE) DECLSPEC_HIDDEN;
852 BOOL find_global_prop(HTMLOuterWindow*,BSTR,DWORD,ScriptHost**,DISPID*) DECLSPEC_HIDDEN;
853 IDispatch *get_script_disp(ScriptHost*) DECLSPEC_HIDDEN;
854 HRESULT search_window_props(HTMLInnerWindow*,BSTR,DWORD,DISPID*) DECLSPEC_HIDDEN;
856 HRESULT wrap_iface(IUnknown*,IUnknown*,IUnknown**) DECLSPEC_HIDDEN;
858 IHTMLElementCollection *create_all_collection(HTMLDOMNode*,BOOL) DECLSPEC_HIDDEN;
859 IHTMLElementCollection *create_collection_from_nodelist(HTMLDocumentNode*,IUnknown*,nsIDOMNodeList*) DECLSPEC_HIDDEN;
860 IHTMLElementCollection *create_collection_from_htmlcol(HTMLDocumentNode*,IUnknown*,nsIDOMHTMLCollection*) DECLSPEC_HIDDEN;
862 /* commands */
863 typedef struct {
864 DWORD id;
865 HRESULT (*query)(HTMLDocument*,OLECMD*);
866 HRESULT (*exec)(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
867 } cmdtable_t;
869 extern const cmdtable_t editmode_cmds[] DECLSPEC_HIDDEN;
871 void do_ns_command(HTMLDocument*,const char*,nsICommandParams*) DECLSPEC_HIDDEN;
873 /* timer */
874 #define UPDATE_UI 0x0001
875 #define UPDATE_TITLE 0x0002
877 void update_doc(HTMLDocument*,DWORD) DECLSPEC_HIDDEN;
878 void update_title(HTMLDocumentObj*) DECLSPEC_HIDDEN;
880 HRESULT do_query_service(IUnknown*,REFGUID,REFIID,void**) DECLSPEC_HIDDEN;
882 /* editor */
883 void init_editor(HTMLDocument*) DECLSPEC_HIDDEN;
884 void handle_edit_event(HTMLDocument*,nsIDOMEvent*) DECLSPEC_HIDDEN;
885 HRESULT editor_exec_copy(HTMLDocument*,DWORD,VARIANT*,VARIANT*) DECLSPEC_HIDDEN;
886 HRESULT editor_exec_cut(HTMLDocument*,DWORD,VARIANT*,VARIANT*) DECLSPEC_HIDDEN;
887 HRESULT editor_exec_paste(HTMLDocument*,DWORD,VARIANT*,VARIANT*) DECLSPEC_HIDDEN;
888 void handle_edit_load(HTMLDocument*) DECLSPEC_HIDDEN;
889 HRESULT editor_is_dirty(HTMLDocument*) DECLSPEC_HIDDEN;
890 void set_dirty(HTMLDocument*,VARIANT_BOOL) DECLSPEC_HIDDEN;
892 extern DWORD mshtml_tls DECLSPEC_HIDDEN;
894 typedef struct task_t task_t;
895 typedef void (*task_proc_t)(task_t*);
897 struct task_t {
898 LONG target_magic;
899 task_proc_t proc;
900 task_proc_t destr;
901 struct task_t *next;
904 typedef struct {
905 task_t header;
906 HTMLDocumentObj *doc;
907 } docobj_task_t;
909 typedef struct {
910 HWND thread_hwnd;
911 task_t *task_queue_head;
912 task_t *task_queue_tail;
913 struct list timer_list;
914 } thread_data_t;
916 thread_data_t *get_thread_data(BOOL) DECLSPEC_HIDDEN;
917 HWND get_thread_hwnd(void) DECLSPEC_HIDDEN;
919 LONG get_task_target_magic(void) DECLSPEC_HIDDEN;
920 void push_task(task_t*,task_proc_t,task_proc_t,LONG) DECLSPEC_HIDDEN;
921 void remove_target_tasks(LONG) DECLSPEC_HIDDEN;
923 DWORD set_task_timer(HTMLDocument*,DWORD,BOOL,IDispatch*) DECLSPEC_HIDDEN;
924 HRESULT clear_task_timer(HTMLDocument*,BOOL,DWORD) DECLSPEC_HIDDEN;
926 const char *debugstr_variant(const VARIANT*) DECLSPEC_HIDDEN;
928 DEFINE_GUID(CLSID_AboutProtocol, 0x3050F406, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
929 DEFINE_GUID(CLSID_JSProtocol, 0x3050F3B2, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
930 DEFINE_GUID(CLSID_MailtoProtocol, 0x3050F3DA, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
931 DEFINE_GUID(CLSID_ResProtocol, 0x3050F3BC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
932 DEFINE_GUID(CLSID_SysimageProtocol, 0x76E67A63, 0x06E9, 0x11D2, 0xA8,0x40, 0x00,0x60,0x08,0x05,0x93,0x82);
934 DEFINE_GUID(CLSID_CMarkup,0x3050f4fb,0x98b5,0x11cf,0xbb,0x82,0x00,0xaa,0x00,0xbd,0xce,0x0b);
936 DEFINE_OLEGUID(CGID_DocHostCmdPriv, 0x000214D4L, 0, 0);
938 /* memory allocation functions */
940 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
942 return HeapAlloc(GetProcessHeap(), 0, len);
945 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len)
947 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
950 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t len)
952 return HeapReAlloc(GetProcessHeap(), 0, mem, len);
955 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t len)
957 return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len);
960 static inline BOOL heap_free(void *mem)
962 return HeapFree(GetProcessHeap(), 0, mem);
965 static inline LPWSTR heap_strdupW(LPCWSTR str)
967 LPWSTR ret = NULL;
969 if(str) {
970 DWORD size;
972 size = (strlenW(str)+1)*sizeof(WCHAR);
973 ret = heap_alloc(size);
974 memcpy(ret, str, size);
977 return ret;
980 static inline LPWSTR heap_strndupW(LPCWSTR str, unsigned len)
982 LPWSTR ret = NULL;
984 if(str) {
985 ret = heap_alloc((len+1)*sizeof(WCHAR));
986 memcpy(ret, str, len*sizeof(WCHAR));
987 ret[len] = 0;
990 return ret;
993 static inline char *heap_strdupA(const char *str)
995 char *ret = NULL;
997 if(str) {
998 DWORD size;
1000 size = strlen(str)+1;
1001 ret = heap_alloc(size);
1002 memcpy(ret, str, size);
1005 return ret;
1008 static inline WCHAR *heap_strdupAtoW(const char *str)
1010 LPWSTR ret = NULL;
1012 if(str) {
1013 DWORD len;
1015 len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
1016 ret = heap_alloc(len*sizeof(WCHAR));
1017 MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
1020 return ret;
1023 static inline char *heap_strdupWtoA(LPCWSTR str)
1025 char *ret = NULL;
1027 if(str) {
1028 DWORD size = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
1029 ret = heap_alloc(size);
1030 WideCharToMultiByte(CP_ACP, 0, str, -1, ret, size, NULL, NULL);
1033 return ret;
1036 static inline void windowref_addref(windowref_t *ref)
1038 InterlockedIncrement(&ref->ref);
1041 static inline void windowref_release(windowref_t *ref)
1043 if(!InterlockedDecrement(&ref->ref))
1044 heap_free(ref);
1047 HDC get_display_dc(void) DECLSPEC_HIDDEN;
1048 HINSTANCE get_shdoclc(void) DECLSPEC_HIDDEN;
1049 void set_statustext(HTMLDocumentObj*,INT,LPCWSTR) DECLSPEC_HIDDEN;
1051 extern HINSTANCE hInst DECLSPEC_HIDDEN;