2005-03-31 10:08:02 +00:00
|
|
|
/*
|
2009-09-16 20:05:24 +00:00
|
|
|
* Copyright 2005-2009 Jacek Caban for CodeWeavers
|
2005-03-31 10:08:02 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-03-31 10:08:02 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-17 13:16:21 +00:00
|
|
|
#include "wingdi.h"
|
2005-08-11 10:30:30 +00:00
|
|
|
#include "docobj.h"
|
|
|
|
#include "mshtml.h"
|
|
|
|
#include "mshtmhst.h"
|
2005-08-27 09:25:56 +00:00
|
|
|
#include "hlink.h"
|
2009-04-15 17:58:05 +00:00
|
|
|
#include "perhist.h"
|
2008-04-17 00:31:43 +00:00
|
|
|
#include "dispex.h"
|
2005-08-11 10:30:30 +00:00
|
|
|
|
2006-12-08 11:38:19 +00:00
|
|
|
#include "wine/list.h"
|
2007-12-31 00:32:48 +00:00
|
|
|
#include "wine/unicode.h"
|
2006-12-08 11:38:19 +00:00
|
|
|
|
2005-08-11 10:30:30 +00:00
|
|
|
#ifdef INIT_GUID
|
|
|
|
#include "initguid.h"
|
|
|
|
#endif
|
|
|
|
|
2005-08-01 10:59:45 +00:00
|
|
|
#include "nsiface.h"
|
|
|
|
|
|
|
|
#define NS_OK ((nsresult)0x00000000L)
|
2005-12-09 10:51:02 +00:00
|
|
|
#define NS_ERROR_FAILURE ((nsresult)0x80004005L)
|
2005-08-01 10:59:45 +00:00
|
|
|
#define NS_NOINTERFACE ((nsresult)0x80004002L)
|
|
|
|
#define NS_ERROR_NOT_IMPLEMENTED ((nsresult)0x80004001L)
|
2005-08-25 19:24:58 +00:00
|
|
|
#define NS_ERROR_INVALID_ARG ((nsresult)0x80070057L)
|
2006-02-09 11:19:33 +00:00
|
|
|
#define NS_ERROR_UNEXPECTED ((nsresult)0x8000ffffL)
|
2006-02-20 10:13:37 +00:00
|
|
|
#define NS_ERROR_UNKNOWN_PROTOCOL ((nsresult)0x804b0012L)
|
2005-08-01 10:59:45 +00:00
|
|
|
|
|
|
|
#define NS_FAILED(res) ((res) & 0x80000000)
|
|
|
|
#define NS_SUCCEEDED(res) (!NS_FAILED(res))
|
|
|
|
|
2005-08-25 19:24:58 +00:00
|
|
|
#define NSAPI WINAPI
|
|
|
|
|
2007-08-17 00:38:00 +00:00
|
|
|
#define MSHTML_E_NODOC 0x800a025c
|
|
|
|
|
2006-03-05 19:38:30 +00:00
|
|
|
typedef struct HTMLDOMNode HTMLDOMNode;
|
2006-04-28 18:01:07 +00:00
|
|
|
typedef struct ConnectionPoint ConnectionPoint;
|
2006-06-02 22:37:58 +00:00
|
|
|
typedef struct BSCallback BSCallback;
|
2008-03-23 01:17:17 +00:00
|
|
|
typedef struct nsChannelBSC nsChannelBSC;
|
2008-04-18 18:16:35 +00:00
|
|
|
typedef struct event_target_t event_target_t;
|
2005-08-01 10:59:45 +00:00
|
|
|
|
2008-04-17 00:32:18 +00:00
|
|
|
/* NOTE: make sure to keep in sync with dispex.c */
|
|
|
|
typedef enum {
|
2008-04-19 10:55:24 +00:00
|
|
|
NULL_tid,
|
2008-10-09 20:33:21 +00:00
|
|
|
DispCEventObj_tid,
|
2008-04-30 16:18:09 +00:00
|
|
|
DispDOMChildrenCollection_tid,
|
2009-10-02 11:51:19 +00:00
|
|
|
DispHTMLAnchorElement_tid,
|
2008-09-01 12:01:49 +00:00
|
|
|
DispHTMLBody_tid,
|
2008-04-30 16:20:48 +00:00
|
|
|
DispHTMLCommentElement_tid,
|
2008-10-06 14:47:25 +00:00
|
|
|
DispHTMLCurrentStyle_tid,
|
2008-04-21 16:21:54 +00:00
|
|
|
DispHTMLDocument_tid,
|
2008-04-24 16:25:51 +00:00
|
|
|
DispHTMLDOMTextNode_tid,
|
2008-04-24 16:26:56 +00:00
|
|
|
DispHTMLElementCollection_tid,
|
2008-06-19 21:15:37 +00:00
|
|
|
DispHTMLGenericElement_tid,
|
2008-10-07 19:44:50 +00:00
|
|
|
DispHTMLIFrame_tid,
|
2008-05-01 15:36:38 +00:00
|
|
|
DispHTMLImg_tid,
|
2008-04-28 23:39:09 +00:00
|
|
|
DispHTMLInputElement_tid,
|
2009-06-22 17:25:58 +00:00
|
|
|
DispHTMLLocation_tid,
|
|
|
|
DispHTMLNavigator_tid,
|
2008-04-28 23:39:38 +00:00
|
|
|
DispHTMLOptionElement_tid,
|
2008-06-17 22:09:53 +00:00
|
|
|
DispHTMLSelectElement_tid,
|
2008-04-30 16:20:58 +00:00
|
|
|
DispHTMLStyle_tid,
|
2008-09-30 15:40:58 +00:00
|
|
|
DispHTMLTable_tid,
|
2008-09-30 15:42:34 +00:00
|
|
|
DispHTMLTableRow_tid,
|
2008-04-23 14:45:52 +00:00
|
|
|
DispHTMLUnknownElement_tid,
|
2008-04-19 16:41:25 +00:00
|
|
|
DispHTMLWindow2_tid,
|
2009-10-02 11:51:19 +00:00
|
|
|
IHTMLAnchorElement_tid,
|
2008-09-01 12:01:49 +00:00
|
|
|
IHTMLBodyElement_tid,
|
|
|
|
IHTMLBodyElement2_tid,
|
2008-04-30 16:20:48 +00:00
|
|
|
IHTMLCommentElement_tid,
|
2008-10-06 14:47:25 +00:00
|
|
|
IHTMLCurrentStyle_tid,
|
2009-03-05 09:08:51 +00:00
|
|
|
IHTMLCurrentStyle2_tid,
|
|
|
|
IHTMLCurrentStyle3_tid,
|
|
|
|
IHTMLCurrentStyle4_tid,
|
2008-04-21 16:21:54 +00:00
|
|
|
IHTMLDocument2_tid,
|
|
|
|
IHTMLDocument3_tid,
|
|
|
|
IHTMLDocument4_tid,
|
|
|
|
IHTMLDocument5_tid,
|
2008-04-30 16:18:09 +00:00
|
|
|
IHTMLDOMChildrenCollection_tid,
|
2008-04-23 14:45:52 +00:00
|
|
|
IHTMLDOMNode_tid,
|
2008-04-24 16:23:17 +00:00
|
|
|
IHTMLDOMNode2_tid,
|
2008-04-24 16:25:51 +00:00
|
|
|
IHTMLDOMTextNode_tid,
|
2008-04-23 14:45:52 +00:00
|
|
|
IHTMLElement_tid,
|
|
|
|
IHTMLElement2_tid,
|
2008-09-01 12:01:49 +00:00
|
|
|
IHTMLElement3_tid,
|
|
|
|
IHTMLElement4_tid,
|
2008-04-24 16:26:56 +00:00
|
|
|
IHTMLElementCollection_tid,
|
2008-10-09 20:33:21 +00:00
|
|
|
IHTMLEventObj_tid,
|
2009-10-13 18:49:34 +00:00
|
|
|
IHTMLFrameBase_tid,
|
2008-10-07 19:44:50 +00:00
|
|
|
IHTMLFrameBase2_tid,
|
2008-06-19 21:15:37 +00:00
|
|
|
IHTMLGenericElement_tid,
|
2009-10-20 21:05:03 +00:00
|
|
|
IHTMLImageElementFactory_tid,
|
2008-05-01 15:36:38 +00:00
|
|
|
IHTMLImgElement_tid,
|
2008-04-28 23:39:09 +00:00
|
|
|
IHTMLInputElement_tid,
|
2009-01-05 17:17:36 +00:00
|
|
|
IHTMLLocation_tid,
|
2008-04-28 23:39:38 +00:00
|
|
|
IHTMLOptionElement_tid,
|
2008-06-17 22:09:53 +00:00
|
|
|
IHTMLSelectElement_tid,
|
2008-04-30 16:20:58 +00:00
|
|
|
IHTMLStyle_tid,
|
2008-10-02 10:37:44 +00:00
|
|
|
IHTMLStyle2_tid,
|
2009-03-05 09:03:56 +00:00
|
|
|
IHTMLStyle3_tid,
|
|
|
|
IHTMLStyle4_tid,
|
2008-09-30 15:40:58 +00:00
|
|
|
IHTMLTable_tid,
|
2008-09-30 15:42:34 +00:00
|
|
|
IHTMLTableRow_tid,
|
2008-09-01 12:01:49 +00:00
|
|
|
IHTMLTextContainer_tid,
|
|
|
|
IHTMLUniqueName_tid,
|
2008-04-17 00:32:18 +00:00
|
|
|
IHTMLWindow2_tid,
|
2008-04-19 16:41:25 +00:00
|
|
|
IHTMLWindow3_tid,
|
2008-04-19 10:55:24 +00:00
|
|
|
IOmNavigator_tid,
|
2008-04-17 00:32:18 +00:00
|
|
|
LAST_tid
|
|
|
|
} tid_t;
|
|
|
|
|
2008-04-19 10:55:24 +00:00
|
|
|
typedef struct dispex_data_t dispex_data_t;
|
2008-06-17 22:10:26 +00:00
|
|
|
typedef struct dispex_dynamic_data_t dispex_dynamic_data_t;
|
2008-04-19 10:55:24 +00:00
|
|
|
|
2008-04-28 23:38:09 +00:00
|
|
|
#define MSHTML_DISPID_CUSTOM_MIN 0x60000000
|
|
|
|
#define MSHTML_DISPID_CUSTOM_MAX 0x6fffffff
|
|
|
|
|
|
|
|
typedef struct {
|
2009-08-31 18:43:44 +00:00
|
|
|
HRESULT (*value)(IUnknown*,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
|
2008-04-28 23:38:09 +00:00
|
|
|
HRESULT (*get_dispid)(IUnknown*,BSTR,DWORD,DISPID*);
|
|
|
|
HRESULT (*invoke)(IUnknown*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
|
|
|
|
} dispex_static_data_vtbl_t;
|
|
|
|
|
2008-04-19 10:55:24 +00:00
|
|
|
typedef struct {
|
2008-04-28 23:38:09 +00:00
|
|
|
const dispex_static_data_vtbl_t *vtbl;
|
2008-04-19 10:55:24 +00:00
|
|
|
const tid_t disp_tid;
|
|
|
|
dispex_data_t *data;
|
2008-05-06 14:04:58 +00:00
|
|
|
const tid_t* const iface_tids;
|
2008-04-19 10:55:24 +00:00
|
|
|
} dispex_static_data_t;
|
|
|
|
|
2008-04-17 00:31:43 +00:00
|
|
|
typedef struct {
|
|
|
|
const IDispatchExVtbl *lpIDispatchExVtbl;
|
|
|
|
|
|
|
|
IUnknown *outer;
|
2008-04-19 10:55:24 +00:00
|
|
|
|
|
|
|
dispex_static_data_t *data;
|
2008-06-17 22:10:26 +00:00
|
|
|
dispex_dynamic_data_t *dynamic_data;
|
2008-04-17 00:31:43 +00:00
|
|
|
} DispatchEx;
|
|
|
|
|
2008-04-19 10:55:24 +00:00
|
|
|
void init_dispex(DispatchEx*,IUnknown*,dispex_static_data_t*);
|
2009-08-31 18:47:55 +00:00
|
|
|
void release_dispex(DispatchEx*);
|
2008-06-30 19:38:23 +00:00
|
|
|
BOOL dispex_query_interface(DispatchEx*,REFIID,void**);
|
2008-10-09 20:30:51 +00:00
|
|
|
HRESULT dispex_get_dprop_ref(DispatchEx*,const WCHAR*,BOOL,VARIANT**);
|
2008-04-17 00:31:43 +00:00
|
|
|
|
2009-09-16 20:08:20 +00:00
|
|
|
typedef struct HTMLDocumentNode HTMLDocumentNode;
|
|
|
|
typedef struct HTMLDocumentObj HTMLDocumentObj;
|
2009-09-16 20:05:24 +00:00
|
|
|
|
2009-09-09 19:30:41 +00:00
|
|
|
typedef enum {
|
|
|
|
SCRIPTMODE_GECKO,
|
|
|
|
SCRIPTMODE_ACTIVESCRIPT
|
|
|
|
} SCRIPTMODE;
|
|
|
|
|
2009-09-09 19:31:32 +00:00
|
|
|
typedef struct ScriptHost ScriptHost;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
WCHAR *name;
|
|
|
|
ScriptHost *script_host;
|
|
|
|
DISPID id;
|
|
|
|
} global_prop_t;
|
|
|
|
|
2006-12-06 17:21:16 +00:00
|
|
|
typedef struct {
|
2009-09-16 20:05:24 +00:00
|
|
|
const IHTMLOptionElementFactoryVtbl *lpHTMLOptionElementFactoryVtbl;
|
|
|
|
|
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
HTMLWindow *window;
|
|
|
|
} HTMLOptionElementFactory;
|
|
|
|
|
2009-10-20 21:04:34 +00:00
|
|
|
typedef struct {
|
2009-10-20 21:05:03 +00:00
|
|
|
DispatchEx dispex;
|
2009-10-20 21:04:34 +00:00
|
|
|
const IHTMLImageElementFactoryVtbl *lpHTMLImageElementFactoryVtbl;
|
|
|
|
|
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
HTMLWindow *window;
|
|
|
|
} HTMLImageElementFactory;
|
|
|
|
|
2009-09-16 20:05:50 +00:00
|
|
|
struct HTMLLocation {
|
|
|
|
DispatchEx dispex;
|
|
|
|
const IHTMLLocationVtbl *lpHTMLLocationVtbl;
|
|
|
|
|
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
HTMLWindow *window;
|
|
|
|
};
|
|
|
|
|
2009-10-26 22:02:50 +00:00
|
|
|
typedef struct {
|
|
|
|
HTMLWindow *window;
|
|
|
|
LONG ref;
|
|
|
|
} windowref_t;
|
|
|
|
|
2009-09-16 20:05:24 +00:00
|
|
|
struct HTMLWindow {
|
2008-04-19 16:41:25 +00:00
|
|
|
DispatchEx dispex;
|
2006-12-06 17:21:16 +00:00
|
|
|
const IHTMLWindow2Vtbl *lpHTMLWindow2Vtbl;
|
2008-04-17 20:53:31 +00:00
|
|
|
const IHTMLWindow3Vtbl *lpHTMLWindow3Vtbl;
|
2008-04-19 16:41:25 +00:00
|
|
|
const IDispatchExVtbl *lpIDispatchExVtbl;
|
2006-12-06 17:21:16 +00:00
|
|
|
|
|
|
|
LONG ref;
|
|
|
|
|
2009-10-26 22:02:50 +00:00
|
|
|
windowref_t *window_ref;
|
2009-10-26 22:05:37 +00:00
|
|
|
LONG task_magic;
|
2009-10-26 22:02:50 +00:00
|
|
|
|
2009-09-16 20:08:20 +00:00
|
|
|
HTMLDocumentNode *doc;
|
|
|
|
HTMLDocumentObj *doc_obj;
|
2006-12-06 17:21:16 +00:00
|
|
|
nsIDOMWindow *nswindow;
|
2009-10-21 19:30:20 +00:00
|
|
|
HTMLWindow *parent;
|
2006-12-08 11:38:19 +00:00
|
|
|
|
2009-10-26 22:03:53 +00:00
|
|
|
nsChannelBSC *bscallback;
|
2009-10-26 22:04:28 +00:00
|
|
|
IMoniker *mon;
|
|
|
|
LPOLESTR url;
|
2009-10-26 22:03:53 +00:00
|
|
|
|
2009-09-08 20:29:39 +00:00
|
|
|
event_target_t *event_target;
|
2008-04-20 22:48:18 +00:00
|
|
|
IHTMLEventObj *event;
|
|
|
|
|
2009-09-09 19:30:41 +00:00
|
|
|
SCRIPTMODE scriptmode;
|
|
|
|
struct list script_hosts;
|
|
|
|
|
2009-09-16 20:05:24 +00:00
|
|
|
HTMLOptionElementFactory *option_factory;
|
2009-10-20 21:04:34 +00:00
|
|
|
HTMLImageElementFactory *image_factory;
|
2009-09-16 20:05:50 +00:00
|
|
|
HTMLLocation *location;
|
2009-09-16 20:05:24 +00:00
|
|
|
|
2009-09-09 19:31:32 +00:00
|
|
|
global_prop_t *global_props;
|
|
|
|
DWORD global_prop_cnt;
|
|
|
|
DWORD global_prop_size;
|
|
|
|
|
2009-10-21 19:30:20 +00:00
|
|
|
struct list children;
|
|
|
|
struct list sibling_entry;
|
2006-12-08 11:38:19 +00:00
|
|
|
struct list entry;
|
2009-09-16 20:05:24 +00:00
|
|
|
};
|
2006-12-06 17:21:16 +00:00
|
|
|
|
2006-06-30 21:44:04 +00:00
|
|
|
typedef enum {
|
|
|
|
UNKNOWN_USERMODE,
|
|
|
|
BROWSEMODE,
|
|
|
|
EDITMODE
|
|
|
|
} USERMODE;
|
|
|
|
|
2007-06-29 00:49:27 +00:00
|
|
|
typedef struct {
|
|
|
|
const IConnectionPointContainerVtbl *lpConnectionPointContainerVtbl;
|
|
|
|
|
|
|
|
ConnectionPoint *cp_list;
|
|
|
|
IUnknown *outer;
|
|
|
|
} ConnectionPointContainer;
|
|
|
|
|
2007-06-29 00:47:59 +00:00
|
|
|
struct ConnectionPoint {
|
|
|
|
const IConnectionPointVtbl *lpConnectionPointVtbl;
|
|
|
|
|
2007-06-29 00:50:04 +00:00
|
|
|
IConnectionPointContainer *container;
|
2007-06-29 00:47:59 +00:00
|
|
|
|
|
|
|
union {
|
|
|
|
IUnknown *unk;
|
|
|
|
IDispatch *disp;
|
|
|
|
IPropertyNotifySink *propnotif;
|
|
|
|
} *sinks;
|
|
|
|
DWORD sinks_size;
|
|
|
|
|
2007-12-04 12:36:27 +00:00
|
|
|
const IID *iid;
|
2007-06-29 00:48:50 +00:00
|
|
|
|
|
|
|
ConnectionPoint *next;
|
2007-06-29 00:47:59 +00:00
|
|
|
};
|
|
|
|
|
2006-08-03 00:36:15 +00:00
|
|
|
struct HTMLDocument {
|
2005-06-28 10:53:42 +00:00
|
|
|
const IHTMLDocument2Vtbl *lpHTMLDocument2Vtbl;
|
2005-12-12 10:51:43 +00:00
|
|
|
const IHTMLDocument3Vtbl *lpHTMLDocument3Vtbl;
|
2007-10-13 01:59:38 +00:00
|
|
|
const IHTMLDocument4Vtbl *lpHTMLDocument4Vtbl;
|
2007-09-26 18:43:52 +00:00
|
|
|
const IHTMLDocument5Vtbl *lpHTMLDocument5Vtbl;
|
2009-10-12 18:39:23 +00:00
|
|
|
const IHTMLDocument6Vtbl *lpHTMLDocument6Vtbl;
|
2005-06-28 10:53:42 +00:00
|
|
|
const IPersistMonikerVtbl *lpPersistMonikerVtbl;
|
|
|
|
const IPersistFileVtbl *lpPersistFileVtbl;
|
2009-04-15 17:58:05 +00:00
|
|
|
const IPersistHistoryVtbl *lpPersistHistoryVtbl;
|
2005-06-28 10:53:42 +00:00
|
|
|
const IMonikerPropVtbl *lpMonikerPropVtbl;
|
|
|
|
const IOleObjectVtbl *lpOleObjectVtbl;
|
|
|
|
const IOleDocumentVtbl *lpOleDocumentVtbl;
|
|
|
|
const IOleDocumentViewVtbl *lpOleDocumentViewVtbl;
|
|
|
|
const IOleInPlaceActiveObjectVtbl *lpOleInPlaceActiveObjectVtbl;
|
|
|
|
const IViewObject2Vtbl *lpViewObject2Vtbl;
|
|
|
|
const IOleInPlaceObjectWindowlessVtbl *lpOleInPlaceObjectWindowlessVtbl;
|
2005-07-03 11:22:23 +00:00
|
|
|
const IServiceProviderVtbl *lpServiceProviderVtbl;
|
2005-07-12 17:00:58 +00:00
|
|
|
const IOleCommandTargetVtbl *lpOleCommandTargetVtbl;
|
2005-08-08 11:07:48 +00:00
|
|
|
const IOleControlVtbl *lpOleControlVtbl;
|
2005-08-27 09:25:56 +00:00
|
|
|
const IHlinkTargetVtbl *lpHlinkTargetVtbl;
|
2006-05-23 20:16:26 +00:00
|
|
|
const IPersistStreamInitVtbl *lpPersistStreamInitVtbl;
|
2008-04-21 16:21:54 +00:00
|
|
|
const IDispatchExVtbl *lpIDispatchExVtbl;
|
2009-01-18 23:03:03 +00:00
|
|
|
const ISupportErrorInfoVtbl *lpSupportErrorInfoVtbl;
|
2005-04-12 11:57:51 +00:00
|
|
|
|
2009-09-16 20:14:21 +00:00
|
|
|
IUnknown *unk_impl;
|
2009-09-16 20:14:38 +00:00
|
|
|
IDispatchEx *dispex;
|
2009-09-16 20:14:21 +00:00
|
|
|
|
2009-09-16 20:07:58 +00:00
|
|
|
HTMLDocumentObj *doc_obj;
|
|
|
|
HTMLDocumentNode *doc_node;
|
|
|
|
|
2006-12-06 17:21:16 +00:00
|
|
|
HTMLWindow *window;
|
2005-08-01 10:59:45 +00:00
|
|
|
|
2009-10-26 22:05:10 +00:00
|
|
|
LONG task_magic;
|
|
|
|
|
2007-06-29 00:49:27 +00:00
|
|
|
ConnectionPointContainer cp_container;
|
2007-06-29 00:47:59 +00:00
|
|
|
ConnectionPoint cp_htmldocevents;
|
|
|
|
ConnectionPoint cp_htmldocevents2;
|
|
|
|
ConnectionPoint cp_propnotif;
|
2006-08-03 00:36:15 +00:00
|
|
|
};
|
2005-04-11 16:11:52 +00:00
|
|
|
|
2009-09-16 20:06:31 +00:00
|
|
|
static inline HRESULT htmldoc_query_interface(HTMLDocument *This, REFIID riid, void **ppv)
|
|
|
|
{
|
2009-09-16 20:14:21 +00:00
|
|
|
return IUnknown_QueryInterface(This->unk_impl, riid, ppv);
|
2009-09-16 20:06:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline ULONG htmldoc_addref(HTMLDocument *This)
|
|
|
|
{
|
2009-09-16 20:14:21 +00:00
|
|
|
return IUnknown_AddRef(This->unk_impl);
|
2009-09-16 20:06:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline ULONG htmldoc_release(HTMLDocument *This)
|
|
|
|
{
|
2009-09-16 20:14:21 +00:00
|
|
|
return IUnknown_Release(This->unk_impl);
|
2009-09-16 20:06:31 +00:00
|
|
|
}
|
|
|
|
|
2009-09-16 20:07:58 +00:00
|
|
|
struct HTMLDocumentObj {
|
2009-09-16 20:06:31 +00:00
|
|
|
HTMLDocument basedoc;
|
2009-09-16 20:14:38 +00:00
|
|
|
DispatchEx dispex;
|
2009-09-16 20:14:05 +00:00
|
|
|
const ICustomDocVtbl *lpCustomDocVtbl;
|
2009-09-16 20:06:31 +00:00
|
|
|
|
|
|
|
LONG ref;
|
2009-09-16 20:09:17 +00:00
|
|
|
|
|
|
|
NSContainer *nscontainer;
|
2009-09-16 20:10:03 +00:00
|
|
|
|
|
|
|
IOleClientSite *client;
|
|
|
|
IDocHostUIHandler *hostui;
|
|
|
|
IOleInPlaceSite *ipsite;
|
|
|
|
IOleInPlaceFrame *frame;
|
|
|
|
IOleInPlaceUIWindow *ip_window;
|
2009-09-16 20:10:30 +00:00
|
|
|
|
2009-09-16 20:11:05 +00:00
|
|
|
DOCHOSTUIINFO hostinfo;
|
|
|
|
|
2009-09-16 20:10:30 +00:00
|
|
|
IOleUndoManager *undomgr;
|
2009-09-16 20:10:47 +00:00
|
|
|
|
|
|
|
HWND hwnd;
|
|
|
|
HWND tooltips_hwnd;
|
2009-09-16 20:11:26 +00:00
|
|
|
|
|
|
|
BOOL in_place_active;
|
|
|
|
BOOL ui_active;
|
|
|
|
BOOL window_active;
|
|
|
|
BOOL has_key_path;
|
|
|
|
BOOL container_locked;
|
|
|
|
BOOL focus;
|
2009-09-16 20:12:06 +00:00
|
|
|
|
2009-09-16 20:12:25 +00:00
|
|
|
USERMODE usermode;
|
2009-09-16 20:12:41 +00:00
|
|
|
READYSTATE readystate;
|
2009-09-16 20:12:56 +00:00
|
|
|
LPWSTR mime;
|
2009-09-16 20:12:25 +00:00
|
|
|
|
2009-09-16 20:13:13 +00:00
|
|
|
DWORD update;
|
2009-09-16 20:07:58 +00:00
|
|
|
};
|
2009-09-16 20:06:31 +00:00
|
|
|
|
2005-08-01 10:59:45 +00:00
|
|
|
struct NSContainer {
|
2006-03-27 19:02:28 +00:00
|
|
|
const nsIWebBrowserChromeVtbl *lpWebBrowserChromeVtbl;
|
|
|
|
const nsIContextMenuListenerVtbl *lpContextMenuListenerVtbl;
|
|
|
|
const nsIURIContentListenerVtbl *lpURIContentListenerVtbl;
|
|
|
|
const nsIEmbeddingSiteWindowVtbl *lpEmbeddingSiteWindowVtbl;
|
|
|
|
const nsITooltipListenerVtbl *lpTooltipListenerVtbl;
|
|
|
|
const nsIInterfaceRequestorVtbl *lpInterfaceRequestorVtbl;
|
|
|
|
const nsIWeakReferenceVtbl *lpWeakReferenceVtbl;
|
|
|
|
const nsISupportsWeakReferenceVtbl *lpSupportsWeakReferenceVtbl;
|
2005-08-25 19:24:58 +00:00
|
|
|
|
2005-08-01 10:59:45 +00:00
|
|
|
nsIWebBrowser *webbrowser;
|
|
|
|
nsIWebNavigation *navigation;
|
|
|
|
nsIBaseWindow *window;
|
2005-08-26 10:05:52 +00:00
|
|
|
nsIWebBrowserFocus *focus;
|
2005-08-01 10:59:45 +00:00
|
|
|
|
2007-09-12 09:41:36 +00:00
|
|
|
nsIEditor *editor;
|
2007-06-10 09:49:12 +00:00
|
|
|
nsIController *editor_controller;
|
|
|
|
|
2006-02-15 10:51:44 +00:00
|
|
|
LONG ref;
|
|
|
|
|
2006-03-01 21:04:51 +00:00
|
|
|
NSContainer *parent;
|
2009-09-16 20:09:17 +00:00
|
|
|
HTMLDocumentObj *doc;
|
2005-08-25 19:24:58 +00:00
|
|
|
|
2006-08-16 14:34:32 +00:00
|
|
|
nsIURIContentListener *content_listener;
|
|
|
|
|
2005-08-01 10:59:45 +00:00
|
|
|
HWND hwnd;
|
2005-09-02 12:19:42 +00:00
|
|
|
|
2008-03-23 01:16:03 +00:00
|
|
|
nsChannelBSC *bscallback; /* hack */
|
2007-11-12 00:23:47 +00:00
|
|
|
HWND reset_focus; /* hack */
|
2005-08-01 10:59:45 +00:00
|
|
|
};
|
|
|
|
|
2006-06-02 22:40:26 +00:00
|
|
|
typedef struct {
|
|
|
|
const nsIHttpChannelVtbl *lpHttpChannelVtbl;
|
|
|
|
const nsIUploadChannelVtbl *lpUploadChannelVtbl;
|
2009-08-22 17:37:30 +00:00
|
|
|
const nsIHttpChannelInternalVtbl *lpIHttpChannelInternalVtbl;
|
2006-06-02 22:40:26 +00:00
|
|
|
|
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
nsIChannel *channel;
|
|
|
|
nsIHttpChannel *http_channel;
|
2009-08-22 17:37:30 +00:00
|
|
|
nsIHttpChannelInternal *http_channel_internal;
|
2006-06-02 22:40:26 +00:00
|
|
|
nsIWineURI *uri;
|
|
|
|
nsIInputStream *post_data_stream;
|
|
|
|
nsILoadGroup *load_group;
|
|
|
|
nsIInterfaceRequestor *notif_callback;
|
2008-12-18 13:08:31 +00:00
|
|
|
nsISupports *owner;
|
2006-06-02 22:40:26 +00:00
|
|
|
nsLoadFlags load_flags;
|
|
|
|
nsIURI *original_uri;
|
2008-03-26 14:24:03 +00:00
|
|
|
char *content_type;
|
2007-04-12 19:25:08 +00:00
|
|
|
char *charset;
|
2009-08-11 17:15:07 +00:00
|
|
|
PRUint32 response_status;
|
2006-06-02 22:40:26 +00:00
|
|
|
} nsChannel;
|
|
|
|
|
2007-10-04 00:09:48 +00:00
|
|
|
typedef struct {
|
2007-10-04 00:10:36 +00:00
|
|
|
HRESULT (*qi)(HTMLDOMNode*,REFIID,void**);
|
2007-10-04 00:09:48 +00:00
|
|
|
void (*destructor)(HTMLDOMNode*);
|
2009-09-08 20:29:39 +00:00
|
|
|
event_target_t **(*get_event_target)(HTMLDOMNode*);
|
2009-10-12 22:42:22 +00:00
|
|
|
HRESULT (*call_event)(HTMLDOMNode*,DWORD,BOOL*);
|
2008-10-09 20:26:41 +00:00
|
|
|
HRESULT (*put_disabled)(HTMLDOMNode*,VARIANT_BOOL);
|
|
|
|
HRESULT (*get_disabled)(HTMLDOMNode*,VARIANT_BOOL*);
|
2007-10-04 00:09:48 +00:00
|
|
|
} NodeImplVtbl;
|
|
|
|
|
2006-03-05 19:38:30 +00:00
|
|
|
struct HTMLDOMNode {
|
2008-04-23 14:45:52 +00:00
|
|
|
DispatchEx dispex;
|
2008-04-24 16:22:51 +00:00
|
|
|
const IHTMLDOMNodeVtbl *lpHTMLDOMNodeVtbl;
|
|
|
|
const IHTMLDOMNode2Vtbl *lpHTMLDOMNode2Vtbl;
|
2007-10-04 00:09:48 +00:00
|
|
|
const NodeImplVtbl *vtbl;
|
2006-03-05 19:38:30 +00:00
|
|
|
|
2007-10-14 10:07:27 +00:00
|
|
|
LONG ref;
|
|
|
|
|
2006-03-05 19:38:30 +00:00
|
|
|
nsIDOMNode *nsnode;
|
2009-09-16 20:13:31 +00:00
|
|
|
HTMLDocumentNode *doc;
|
2008-04-18 18:16:35 +00:00
|
|
|
event_target_t *event_target;
|
2006-03-05 19:38:30 +00:00
|
|
|
|
|
|
|
HTMLDOMNode *next;
|
|
|
|
};
|
|
|
|
|
2006-03-05 19:39:59 +00:00
|
|
|
typedef struct {
|
2007-09-12 21:39:17 +00:00
|
|
|
HTMLDOMNode node;
|
2007-12-04 12:37:21 +00:00
|
|
|
ConnectionPointContainer cp_container;
|
2007-09-12 21:39:17 +00:00
|
|
|
|
2007-10-04 00:09:48 +00:00
|
|
|
const IHTMLElementVtbl *lpHTMLElementVtbl;
|
|
|
|
const IHTMLElement2Vtbl *lpHTMLElement2Vtbl;
|
2008-10-07 19:44:18 +00:00
|
|
|
const IHTMLElement3Vtbl *lpHTMLElement3Vtbl;
|
2006-03-05 19:39:59 +00:00
|
|
|
|
|
|
|
nsIDOMHTMLElement *nselem;
|
|
|
|
} HTMLElement;
|
|
|
|
|
2006-04-28 17:57:28 +00:00
|
|
|
typedef struct {
|
2007-09-15 14:07:52 +00:00
|
|
|
HTMLElement element;
|
2006-04-28 17:57:28 +00:00
|
|
|
|
2007-09-15 14:07:52 +00:00
|
|
|
const IHTMLTextContainerVtbl *lpHTMLTextContainerVtbl;
|
2007-12-04 12:38:31 +00:00
|
|
|
|
|
|
|
ConnectionPoint cp;
|
2006-04-28 17:57:28 +00:00
|
|
|
} HTMLTextContainer;
|
|
|
|
|
2009-10-21 19:28:09 +00:00
|
|
|
typedef struct _mutation_queue_t {
|
|
|
|
DWORD type;
|
|
|
|
nsISupports *nsiface;
|
|
|
|
|
|
|
|
struct _mutation_queue_t *next;
|
|
|
|
} mutation_queue_t;
|
|
|
|
|
2009-10-27 20:09:25 +00:00
|
|
|
typedef struct nsDocumentEventListener nsDocumentEventListener;
|
|
|
|
|
2009-09-16 20:13:49 +00:00
|
|
|
struct HTMLDocumentNode {
|
|
|
|
HTMLDOMNode node;
|
|
|
|
HTMLDocument basedoc;
|
|
|
|
|
2009-09-28 22:11:28 +00:00
|
|
|
const IInternetHostSecurityManagerVtbl *lpIInternetHostSecurityManagerVtbl;
|
|
|
|
|
2009-10-21 19:28:09 +00:00
|
|
|
const nsIDocumentObserverVtbl *lpIDocumentObserverVtbl;
|
|
|
|
const nsIRunnableVtbl *lpIRunnableVtbl;
|
|
|
|
|
2009-09-16 20:13:49 +00:00
|
|
|
LONG ref;
|
|
|
|
|
2009-10-21 19:27:42 +00:00
|
|
|
nsIDOMHTMLDocument *nsdoc;
|
2009-09-16 20:13:49 +00:00
|
|
|
HTMLDOMNode *nodes;
|
2009-10-11 19:10:47 +00:00
|
|
|
BOOL content_ready;
|
2009-09-16 20:13:49 +00:00
|
|
|
|
2009-09-30 22:05:36 +00:00
|
|
|
IInternetSecurityManager *secmgr;
|
2009-10-27 20:09:25 +00:00
|
|
|
nsDocumentEventListener *nsevent_listener;
|
2009-10-27 20:10:02 +00:00
|
|
|
BOOL *event_vector;
|
2009-09-30 22:05:36 +00:00
|
|
|
|
2009-10-21 19:28:09 +00:00
|
|
|
mutation_queue_t *mutation_queue;
|
|
|
|
mutation_queue_t *mutation_queue_tail;
|
|
|
|
|
2009-10-26 22:05:37 +00:00
|
|
|
struct list bindings;
|
2009-09-16 20:13:49 +00:00
|
|
|
struct list selection_list;
|
|
|
|
struct list range_list;
|
|
|
|
};
|
|
|
|
|
2006-12-06 17:21:16 +00:00
|
|
|
#define HTMLWINDOW2(x) ((IHTMLWindow2*) &(x)->lpHTMLWindow2Vtbl)
|
2008-04-17 20:53:31 +00:00
|
|
|
#define HTMLWINDOW3(x) ((IHTMLWindow3*) &(x)->lpHTMLWindow3Vtbl)
|
2006-12-06 17:21:16 +00:00
|
|
|
|
2005-06-28 10:53:42 +00:00
|
|
|
#define HTMLDOC(x) ((IHTMLDocument2*) &(x)->lpHTMLDocument2Vtbl)
|
2005-12-12 10:51:43 +00:00
|
|
|
#define HTMLDOC3(x) ((IHTMLDocument3*) &(x)->lpHTMLDocument3Vtbl)
|
2007-10-13 01:59:38 +00:00
|
|
|
#define HTMLDOC4(x) ((IHTMLDocument4*) &(x)->lpHTMLDocument4Vtbl)
|
2007-09-26 18:43:52 +00:00
|
|
|
#define HTMLDOC5(x) ((IHTMLDocument5*) &(x)->lpHTMLDocument5Vtbl)
|
2009-10-12 18:39:23 +00:00
|
|
|
#define HTMLDOC6(x) ((IHTMLDocument6*) &(x)->lpHTMLDocument6Vtbl)
|
2005-06-28 10:53:42 +00:00
|
|
|
#define PERSIST(x) ((IPersist*) &(x)->lpPersistFileVtbl)
|
|
|
|
#define PERSISTMON(x) ((IPersistMoniker*) &(x)->lpPersistMonikerVtbl)
|
|
|
|
#define PERSISTFILE(x) ((IPersistFile*) &(x)->lpPersistFileVtbl)
|
|
|
|
#define MONPROP(x) ((IMonikerProp*) &(x)->lpMonikerPropVtbl)
|
|
|
|
#define OLEOBJ(x) ((IOleObject*) &(x)->lpOleObjectVtbl)
|
|
|
|
#define OLEDOC(x) ((IOleDocument*) &(x)->lpOleDocumentVtbl)
|
|
|
|
#define DOCVIEW(x) ((IOleDocumentView*) &(x)->lpOleDocumentViewVtbl)
|
|
|
|
#define OLEWIN(x) ((IOleWindow*) &(x)->lpOleInPlaceActiveObjectVtbl)
|
|
|
|
#define ACTOBJ(x) ((IOleInPlaceActiveObject*) &(x)->lpOleInPlaceActiveObjectVtbl)
|
|
|
|
#define VIEWOBJ(x) ((IViewObject*) &(x)->lpViewObject2Vtbl)
|
|
|
|
#define VIEWOBJ2(x) ((IViewObject2*) &(x)->lpViewObject2Vtbl)
|
|
|
|
#define INPLACEOBJ(x) ((IOleInPlaceObject*) &(x)->lpOleInPlaceObjectWindowlessVtbl)
|
|
|
|
#define INPLACEWIN(x) ((IOleInPlaceObjectWindowless*) &(x)->lpOleInPlaceObjectWindowlessVtbl)
|
2005-07-03 11:22:23 +00:00
|
|
|
#define SERVPROV(x) ((IServiceProvider*) &(x)->lpServiceProviderVtbl)
|
2005-07-12 17:00:58 +00:00
|
|
|
#define CMDTARGET(x) ((IOleCommandTarget*) &(x)->lpOleCommandTargetVtbl)
|
2005-08-08 11:07:48 +00:00
|
|
|
#define CONTROL(x) ((IOleControl*) &(x)->lpOleControlVtbl)
|
2005-08-27 09:25:56 +00:00
|
|
|
#define HLNKTARGET(x) ((IHlinkTarget*) &(x)->lpHlinkTargetVtbl)
|
2006-04-28 17:59:58 +00:00
|
|
|
#define CONPTCONT(x) ((IConnectionPointContainer*) &(x)->lpConnectionPointContainerVtbl)
|
2006-05-23 20:16:26 +00:00
|
|
|
#define PERSTRINIT(x) ((IPersistStreamInit*) &(x)->lpPersistStreamInitVtbl)
|
2009-04-15 17:58:05 +00:00
|
|
|
#define PERSISTHIST(x) ((IPersistHistory*) &(x)->lpPersistHistoryVtbl)
|
2007-08-12 23:18:49 +00:00
|
|
|
#define CUSTOMDOC(x) ((ICustomDoc*) &(x)->lpCustomDocVtbl)
|
2005-06-28 10:53:42 +00:00
|
|
|
|
2005-08-25 19:24:58 +00:00
|
|
|
#define NSWBCHROME(x) ((nsIWebBrowserChrome*) &(x)->lpWebBrowserChromeVtbl)
|
|
|
|
#define NSCML(x) ((nsIContextMenuListener*) &(x)->lpContextMenuListenerVtbl)
|
2005-09-02 12:19:42 +00:00
|
|
|
#define NSURICL(x) ((nsIURIContentListener*) &(x)->lpURIContentListenerVtbl)
|
2005-12-09 10:23:58 +00:00
|
|
|
#define NSEMBWNDS(x) ((nsIEmbeddingSiteWindow*) &(x)->lpEmbeddingSiteWindowVtbl)
|
2006-02-27 18:08:23 +00:00
|
|
|
#define NSIFACEREQ(x) ((nsIInterfaceRequestor*) &(x)->lpInterfaceRequestorVtbl)
|
2006-03-27 19:02:28 +00:00
|
|
|
#define NSTOOLTIP(x) ((nsITooltipListener*) &(x)->lpTooltipListenerVtbl)
|
2006-11-30 22:32:05 +00:00
|
|
|
#define NSEVENTLIST(x) ((nsIDOMEventListener*) &(x)->lpDOMEventListenerVtbl)
|
2006-03-27 19:02:28 +00:00
|
|
|
#define NSWEAKREF(x) ((nsIWeakReference*) &(x)->lpWeakReferenceVtbl)
|
|
|
|
#define NSSUPWEAKREF(x) ((nsISupportsWeakReference*) &(x)->lpSupportsWeakReferenceVtbl)
|
2005-08-25 19:24:58 +00:00
|
|
|
|
2009-10-21 19:28:09 +00:00
|
|
|
#define NSDOCOBS(x) ((nsIDocumentObserver*) &(x)->lpIDocumentObserverVtbl)
|
2008-12-30 05:48:59 +00:00
|
|
|
|
2009-10-21 19:28:09 +00:00
|
|
|
#define NSRUNNABLE(x) ((nsIRunnable*) &(x)->lpIRunnableVtbl)
|
2008-12-30 05:48:59 +00:00
|
|
|
|
2006-06-02 22:40:26 +00:00
|
|
|
#define NSCHANNEL(x) ((nsIChannel*) &(x)->lpHttpChannelVtbl)
|
|
|
|
#define NSHTTPCHANNEL(x) ((nsIHttpChannel*) &(x)->lpHttpChannelVtbl)
|
|
|
|
#define NSUPCHANNEL(x) ((nsIUploadChannel*) &(x)->lpUploadChannelVtbl)
|
2009-08-22 17:37:30 +00:00
|
|
|
#define NSHTTPINTERNAL(x) ((nsIHttpChannelInternal*) &(x)->lpIHttpChannelInternalVtbl)
|
2006-06-02 22:40:26 +00:00
|
|
|
|
2006-06-02 22:37:58 +00:00
|
|
|
#define HTTPNEG(x) ((IHttpNegotiate2*) &(x)->lpHttpNegotiate2Vtbl)
|
2006-06-02 22:40:26 +00:00
|
|
|
#define STATUSCLB(x) ((IBindStatusCallback*) &(x)->lpBindStatusCallbackVtbl)
|
2006-06-02 22:37:58 +00:00
|
|
|
#define BINDINFO(x) ((IInternetBindInfo*) &(x)->lpInternetBindInfoVtbl);
|
|
|
|
|
2006-03-05 19:39:59 +00:00
|
|
|
#define HTMLELEM(x) ((IHTMLElement*) &(x)->lpHTMLElementVtbl)
|
2006-03-23 20:38:38 +00:00
|
|
|
#define HTMLELEM2(x) ((IHTMLElement2*) &(x)->lpHTMLElement2Vtbl)
|
2008-10-07 19:44:18 +00:00
|
|
|
#define HTMLELEM3(x) ((IHTMLElement3*) &(x)->lpHTMLElement3Vtbl)
|
2006-03-05 19:38:30 +00:00
|
|
|
#define HTMLDOMNODE(x) ((IHTMLDOMNode*) &(x)->lpHTMLDOMNodeVtbl)
|
2008-04-24 16:22:51 +00:00
|
|
|
#define HTMLDOMNODE2(x) ((IHTMLDOMNode2*) &(x)->lpHTMLDOMNode2Vtbl)
|
2006-03-05 19:38:30 +00:00
|
|
|
|
2006-04-28 17:57:28 +00:00
|
|
|
#define HTMLTEXTCONT(x) ((IHTMLTextContainer*) &(x)->lpHTMLTextContainerVtbl)
|
|
|
|
|
2007-10-13 01:58:55 +00:00
|
|
|
#define HTMLOPTFACTORY(x) ((IHTMLOptionElementFactory*) &(x)->lpHTMLOptionElementFactoryVtbl)
|
2009-10-20 21:04:34 +00:00
|
|
|
#define HTMLIMGFACTORY(x) ((IHTMLImageElementFactory*) &(x)->lpHTMLImageElementFactoryVtbl)
|
2008-03-26 14:23:41 +00:00
|
|
|
#define HTMLLOCATION(x) ((IHTMLLocation*) &(x)->lpHTMLLocationVtbl)
|
2007-10-13 01:58:55 +00:00
|
|
|
|
2008-04-17 00:31:43 +00:00
|
|
|
#define DISPATCHEX(x) ((IDispatchEx*) &(x)->lpIDispatchExVtbl)
|
|
|
|
|
2009-01-18 23:03:03 +00:00
|
|
|
#define SUPPERRINFO(x) ((ISupportErrorInfo*) &(x)->lpSupportErrorInfoVtbl)
|
|
|
|
|
2009-09-28 22:11:28 +00:00
|
|
|
#define HOSTSECMGR(x) ((IInternetHostSecurityManager*) &(x)->lpIInternetHostSecurityManagerVtbl)
|
|
|
|
|
2007-10-04 00:07:59 +00:00
|
|
|
#define DEFINE_THIS2(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,ifc)))
|
|
|
|
#define DEFINE_THIS(cls,ifc,iface) DEFINE_THIS2(cls,lp ## ifc ## Vtbl,iface)
|
2005-04-11 16:11:52 +00:00
|
|
|
|
2005-03-31 10:08:02 +00:00
|
|
|
HRESULT HTMLDocument_Create(IUnknown*,REFIID,void**);
|
2006-06-22 14:14:14 +00:00
|
|
|
HRESULT HTMLLoadOptions_Create(IUnknown*,REFIID,void**);
|
2009-09-16 20:07:58 +00:00
|
|
|
HRESULT create_doc_from_nsdoc(nsIDOMHTMLDocument*,HTMLDocumentObj*,HTMLWindow*,HTMLDocumentNode**);
|
2005-04-11 16:11:52 +00:00
|
|
|
|
2009-10-21 19:30:20 +00:00
|
|
|
HRESULT HTMLWindow_Create(HTMLDocumentObj*,nsIDOMWindow*,HTMLWindow*,HTMLWindow**);
|
2009-10-21 19:29:36 +00:00
|
|
|
void update_window_doc(HTMLWindow*);
|
2007-05-30 21:38:03 +00:00
|
|
|
HTMLWindow *nswindow_to_window(const nsIDOMWindow*);
|
2009-10-21 19:30:20 +00:00
|
|
|
nsIDOMWindow *get_nsdoc_window(nsIDOMDocument*);
|
2009-09-16 20:05:24 +00:00
|
|
|
HTMLOptionElementFactory *HTMLOptionElementFactory_Create(HTMLWindow*);
|
2009-10-20 21:04:34 +00:00
|
|
|
HTMLImageElementFactory *HTMLImageElementFactory_Create(HTMLWindow*);
|
2009-09-16 20:05:50 +00:00
|
|
|
HRESULT HTMLLocation_Create(HTMLWindow*,HTMLLocation**);
|
2008-04-07 10:34:24 +00:00
|
|
|
IOmNavigator *OmNavigator_Create(void);
|
2006-12-06 17:21:16 +00:00
|
|
|
|
2005-12-12 10:51:43 +00:00
|
|
|
void HTMLDocument_HTMLDocument3_Init(HTMLDocument*);
|
2007-09-26 18:43:52 +00:00
|
|
|
void HTMLDocument_HTMLDocument5_Init(HTMLDocument*);
|
2005-04-11 16:11:52 +00:00
|
|
|
void HTMLDocument_Persist_Init(HTMLDocument*);
|
2006-06-20 17:02:48 +00:00
|
|
|
void HTMLDocument_OleCmd_Init(HTMLDocument*);
|
2005-04-12 11:57:51 +00:00
|
|
|
void HTMLDocument_OleObj_Init(HTMLDocument*);
|
2005-04-13 14:41:19 +00:00
|
|
|
void HTMLDocument_View_Init(HTMLDocument*);
|
2005-06-28 10:53:42 +00:00
|
|
|
void HTMLDocument_Window_Init(HTMLDocument*);
|
2005-07-03 11:22:23 +00:00
|
|
|
void HTMLDocument_Service_Init(HTMLDocument*);
|
2005-08-27 09:25:56 +00:00
|
|
|
void HTMLDocument_Hlink_Init(HTMLDocument*);
|
2006-06-25 13:49:39 +00:00
|
|
|
|
2009-09-28 22:11:28 +00:00
|
|
|
void HTMLDocumentNode_SecMgr_Init(HTMLDocumentNode*);
|
|
|
|
|
2008-10-06 14:49:00 +00:00
|
|
|
HRESULT HTMLCurrentStyle_Create(HTMLElement*,IHTMLCurrentStyle**);
|
2008-10-02 10:37:35 +00:00
|
|
|
|
2007-12-04 12:36:27 +00:00
|
|
|
void ConnectionPoint_Init(ConnectionPoint*,ConnectionPointContainer*,REFIID);
|
|
|
|
void ConnectionPointContainer_Init(ConnectionPointContainer*,IUnknown*);
|
2007-06-29 00:49:27 +00:00
|
|
|
void ConnectionPointContainer_Destroy(ConnectionPointContainer*);
|
2007-06-29 00:48:50 +00:00
|
|
|
|
2009-09-16 20:09:17 +00:00
|
|
|
NSContainer *NSContainer_Create(HTMLDocumentObj*,NSContainer*);
|
2006-02-15 10:51:44 +00:00
|
|
|
void NSContainer_Release(NSContainer*);
|
2005-04-14 11:30:50 +00:00
|
|
|
|
2009-10-21 19:28:09 +00:00
|
|
|
void init_mutation(HTMLDocumentNode*);
|
2009-10-21 19:28:39 +00:00
|
|
|
void release_mutation(HTMLDocumentNode*);
|
2008-12-30 05:48:59 +00:00
|
|
|
|
2009-09-16 20:10:03 +00:00
|
|
|
void HTMLDocument_LockContainer(HTMLDocumentObj*,BOOL);
|
|
|
|
void show_context_menu(HTMLDocumentObj*,DWORD,POINT*,IDispatch*);
|
|
|
|
void notif_focus(HTMLDocumentObj*);
|
2005-08-22 14:07:49 +00:00
|
|
|
|
2009-09-16 20:10:47 +00:00
|
|
|
void show_tooltip(HTMLDocumentObj*,DWORD,DWORD,LPCWSTR);
|
|
|
|
void hide_tooltip(HTMLDocumentObj*);
|
2006-08-17 01:34:22 +00:00
|
|
|
HRESULT get_client_disp_property(IOleClientSite*,DISPID,VARIANT*);
|
2006-03-27 19:02:28 +00:00
|
|
|
|
2005-06-27 09:50:56 +00:00
|
|
|
HRESULT ProtocolFactory_Create(REFCLSID,REFIID,void**);
|
|
|
|
|
2007-10-13 23:49:19 +00:00
|
|
|
BOOL load_gecko(BOOL);
|
2005-08-01 10:59:45 +00:00
|
|
|
void close_gecko(void);
|
2006-03-01 21:04:51 +00:00
|
|
|
void register_nsservice(nsIComponentRegistrar*,nsIServiceManager*);
|
2006-02-09 11:17:08 +00:00
|
|
|
void init_nsio(nsIComponentManager*,nsIComponentRegistrar*);
|
2008-12-18 13:08:13 +00:00
|
|
|
void release_nsio(void);
|
2007-10-13 23:49:19 +00:00
|
|
|
BOOL install_wine_gecko(BOOL);
|
2005-08-01 10:59:45 +00:00
|
|
|
|
2009-09-13 22:36:09 +00:00
|
|
|
HRESULT nsuri_to_url(LPCWSTR,BOOL,BSTR*);
|
2008-10-13 19:50:37 +00:00
|
|
|
|
2009-10-11 19:11:03 +00:00
|
|
|
HRESULT hlink_frame_navigate(HTMLDocument*,LPCWSTR,nsIInputStream*,DWORD);
|
2009-10-11 19:11:35 +00:00
|
|
|
HRESULT navigate_url(HTMLDocumentNode*,OLECHAR*);
|
2006-02-13 12:26:00 +00:00
|
|
|
|
2006-08-22 14:15:09 +00:00
|
|
|
void call_property_onchanged(ConnectionPoint*,DISPID);
|
2007-11-20 00:49:36 +00:00
|
|
|
HRESULT call_set_active_object(IOleInPlaceUIWindow*,IOleInPlaceActiveObject*);
|
2006-08-22 14:15:09 +00:00
|
|
|
|
2008-09-04 11:39:58 +00:00
|
|
|
void *nsalloc(size_t) __WINE_ALLOC_SIZE(1);
|
2006-03-27 19:02:28 +00:00
|
|
|
void nsfree(void*);
|
|
|
|
|
2006-03-18 21:00:34 +00:00
|
|
|
void nsACString_Init(nsACString*,const char*);
|
2006-12-13 23:20:26 +00:00
|
|
|
void nsACString_SetData(nsACString*,const char*);
|
2007-12-17 00:38:15 +00:00
|
|
|
PRUint32 nsACString_GetData(const nsACString*,const char**);
|
2006-03-18 21:00:34 +00:00
|
|
|
void nsACString_Finish(nsACString*);
|
2005-08-11 18:36:48 +00:00
|
|
|
|
2006-03-06 21:34:49 +00:00
|
|
|
void nsAString_Init(nsAString*,const PRUnichar*);
|
2008-03-07 11:56:33 +00:00
|
|
|
void nsAString_SetData(nsAString*,const PRUnichar*);
|
2007-12-17 00:38:30 +00:00
|
|
|
PRUint32 nsAString_GetData(const nsAString*,const PRUnichar**);
|
2006-03-06 21:34:49 +00:00
|
|
|
void nsAString_Finish(nsAString*);
|
|
|
|
|
2006-08-27 14:01:06 +00:00
|
|
|
nsICommandParams *create_nscommand_params(void);
|
2009-08-11 17:17:19 +00:00
|
|
|
HRESULT nsnode_to_nsstring(nsIDOMNode*,nsAString*);
|
2007-09-12 09:41:36 +00:00
|
|
|
void get_editor_controller(NSContainer*);
|
2007-09-26 18:46:37 +00:00
|
|
|
nsresult get_nsinterface(nsISupports*,REFIID,void**);
|
2006-06-02 22:40:26 +00:00
|
|
|
|
2009-10-27 20:09:25 +00:00
|
|
|
void init_nsevents(HTMLDocumentNode*);
|
|
|
|
void release_nsevents(HTMLDocumentNode*);
|
2009-10-27 20:10:02 +00:00
|
|
|
void add_nsevent_listener(HTMLDocumentNode*,LPCWSTR);
|
2009-10-27 20:09:25 +00:00
|
|
|
|
2009-10-26 22:03:53 +00:00
|
|
|
void set_window_bscallback(HTMLWindow*,nsChannelBSC*);
|
2009-10-26 22:04:28 +00:00
|
|
|
void set_current_mon(HTMLWindow*,IMoniker*);
|
2009-10-26 22:05:37 +00:00
|
|
|
HRESULT start_binding(HTMLWindow*,HTMLDocumentNode*,BSCallback*,IBindCtx*);
|
|
|
|
void abort_document_bindings(HTMLDocumentNode*);
|
2008-03-23 01:16:03 +00:00
|
|
|
|
2009-10-26 22:05:37 +00:00
|
|
|
HRESULT bind_mon_to_buffer(HTMLDocumentNode*,IMoniker*,void**,DWORD*);
|
2006-02-15 10:52:33 +00:00
|
|
|
|
2008-03-23 01:16:03 +00:00
|
|
|
nsChannelBSC *create_channelbsc(IMoniker*);
|
|
|
|
HRESULT channelbsc_load_stream(nsChannelBSC*,IStream*);
|
|
|
|
void channelbsc_set_channel(nsChannelBSC*,nsChannel*,nsIStreamListener*,nsISupports*);
|
|
|
|
IMoniker *get_channelbsc_mon(nsChannelBSC*);
|
2008-03-23 01:15:20 +00:00
|
|
|
|
2009-10-26 22:05:10 +00:00
|
|
|
void parse_complete(HTMLDocumentObj*);
|
|
|
|
|
2009-09-16 20:09:42 +00:00
|
|
|
HRESULT HTMLSelectionObject_Create(HTMLDocumentNode*,nsISelection*,IHTMLSelectionObject**);
|
2009-09-16 20:11:43 +00:00
|
|
|
HRESULT HTMLTxtRange_Create(HTMLDocumentNode*,nsIDOMRange*,IHTMLTxtRange**);
|
2006-11-17 12:05:01 +00:00
|
|
|
IHTMLStyle *HTMLStyle_Create(nsIDOMCSSStyleDeclaration*);
|
2007-11-25 18:08:40 +00:00
|
|
|
IHTMLStyleSheet *HTMLStyleSheet_Create(nsIDOMStyleSheet*);
|
2007-09-19 11:09:35 +00:00
|
|
|
IHTMLStyleSheetsCollection *HTMLStyleSheetsCollection_Create(nsIDOMStyleSheetList*);
|
2006-02-13 12:26:00 +00:00
|
|
|
|
2009-09-16 20:09:42 +00:00
|
|
|
void detach_selection(HTMLDocumentNode*);
|
2009-09-16 20:11:43 +00:00
|
|
|
void detach_ranges(HTMLDocumentNode*);
|
2008-10-13 19:49:58 +00:00
|
|
|
HRESULT get_node_text(HTMLDOMNode*,BSTR*);
|
2007-08-15 17:17:49 +00:00
|
|
|
|
2009-10-19 21:04:19 +00:00
|
|
|
HRESULT create_nselem(HTMLDocumentNode*,const WCHAR*,nsIDOMHTMLElement**);
|
|
|
|
|
2009-09-16 20:13:31 +00:00
|
|
|
HTMLDOMNode *HTMLDOMTextNode_Create(HTMLDocumentNode*,nsIDOMNode*);
|
2008-04-24 16:25:34 +00:00
|
|
|
|
2009-09-16 20:13:31 +00:00
|
|
|
HTMLElement *HTMLElement_Create(HTMLDocumentNode*,nsIDOMNode*,BOOL);
|
|
|
|
HTMLElement *HTMLCommentElement_Create(HTMLDocumentNode*,nsIDOMNode*);
|
2009-11-01 18:16:48 +00:00
|
|
|
HTMLElement *HTMLAnchorElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
|
|
|
|
HTMLElement *HTMLBodyElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
|
|
|
|
HTMLElement *HTMLIFrame_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
|
|
|
|
HTMLElement *HTMLImgElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
|
|
|
|
HTMLElement *HTMLInputElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
|
|
|
|
HTMLElement *HTMLOptionElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
|
|
|
|
HTMLElement *HTMLScriptElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
|
|
|
|
HTMLElement *HTMLSelectElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
|
|
|
|
HTMLElement *HTMLTable_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
|
|
|
|
HTMLElement *HTMLTableRow_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
|
|
|
|
HTMLElement *HTMLTextAreaElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
|
|
|
|
HTMLElement *HTMLGenericElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*);
|
2006-03-05 19:39:59 +00:00
|
|
|
|
2009-09-16 20:13:31 +00:00
|
|
|
void HTMLDOMNode_Init(HTMLDocumentNode*,HTMLDOMNode*,nsIDOMNode*);
|
2009-11-01 18:16:48 +00:00
|
|
|
void HTMLElement_Init(HTMLElement*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*);
|
2006-03-23 20:38:38 +00:00
|
|
|
void HTMLElement2_Init(HTMLElement*);
|
2008-10-07 19:44:18 +00:00
|
|
|
void HTMLElement3_Init(HTMLElement*);
|
2009-11-01 18:16:48 +00:00
|
|
|
void HTMLTextContainer_Init(HTMLTextContainer*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*);
|
2006-04-28 17:57:28 +00:00
|
|
|
|
2006-03-18 18:43:05 +00:00
|
|
|
HRESULT HTMLDOMNode_QI(HTMLDOMNode*,REFIID,void**);
|
2007-10-04 00:09:48 +00:00
|
|
|
void HTMLDOMNode_destructor(HTMLDOMNode*);
|
|
|
|
|
2007-10-04 00:10:36 +00:00
|
|
|
HRESULT HTMLElement_QI(HTMLDOMNode*,REFIID,void**);
|
2007-10-04 00:09:48 +00:00
|
|
|
void HTMLElement_destructor(HTMLDOMNode*);
|
2006-03-18 18:43:05 +00:00
|
|
|
|
2009-09-16 20:13:31 +00:00
|
|
|
HTMLDOMNode *get_node(HTMLDocumentNode*,nsIDOMNode*,BOOL);
|
|
|
|
void release_nodes(HTMLDocumentNode*);
|
2006-03-05 19:38:30 +00:00
|
|
|
|
2009-09-09 19:30:41 +00:00
|
|
|
void release_script_hosts(HTMLWindow*);
|
|
|
|
void connect_scripts(HTMLWindow*);
|
2009-09-16 20:09:17 +00:00
|
|
|
void doc_insert_script(HTMLWindow*,nsIDOMHTMLScriptElement*);
|
2009-09-16 20:08:20 +00:00
|
|
|
IDispatch *script_parse_event(HTMLWindow*,LPCWSTR);
|
2009-09-09 19:30:41 +00:00
|
|
|
void set_script_mode(HTMLWindow*,SCRIPTMODE);
|
2009-09-09 19:31:32 +00:00
|
|
|
BOOL find_global_prop(HTMLWindow*,BSTR,DWORD,ScriptHost**,DISPID*);
|
|
|
|
IDispatch *get_script_disp(ScriptHost*);
|
2008-03-25 01:10:47 +00:00
|
|
|
|
2008-09-30 15:45:08 +00:00
|
|
|
IHTMLElementCollection *create_all_collection(HTMLDOMNode*,BOOL);
|
2009-09-16 20:13:31 +00:00
|
|
|
IHTMLElementCollection *create_collection_from_nodelist(HTMLDocumentNode*,IUnknown*,nsIDOMNodeList*);
|
|
|
|
IHTMLElementCollection *create_collection_from_htmlcol(HTMLDocumentNode*,IUnknown*,nsIDOMHTMLCollection*);
|
2007-10-04 00:13:01 +00:00
|
|
|
|
2007-06-10 09:49:12 +00:00
|
|
|
/* commands */
|
2007-06-10 09:26:47 +00:00
|
|
|
typedef struct {
|
|
|
|
DWORD id;
|
|
|
|
HRESULT (*query)(HTMLDocument*,OLECMD*);
|
|
|
|
HRESULT (*exec)(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
|
|
|
|
} cmdtable_t;
|
|
|
|
|
2007-06-10 09:28:52 +00:00
|
|
|
extern const cmdtable_t editmode_cmds[];
|
|
|
|
|
2009-09-16 20:09:17 +00:00
|
|
|
void do_ns_command(HTMLDocument*,const char*,nsICommandParams*);
|
2007-09-26 18:45:31 +00:00
|
|
|
|
2007-06-10 09:49:12 +00:00
|
|
|
/* timer */
|
2007-06-10 09:38:51 +00:00
|
|
|
#define UPDATE_UI 0x0001
|
|
|
|
#define UPDATE_TITLE 0x0002
|
|
|
|
|
2009-09-16 20:10:47 +00:00
|
|
|
void update_doc(HTMLDocument*,DWORD);
|
2009-09-16 20:10:03 +00:00
|
|
|
void update_title(HTMLDocumentObj*);
|
2007-06-10 09:38:51 +00:00
|
|
|
|
2006-11-24 09:17:54 +00:00
|
|
|
/* editor */
|
2007-06-10 09:44:38 +00:00
|
|
|
void init_editor(HTMLDocument*);
|
2007-06-10 09:35:11 +00:00
|
|
|
void set_ns_editmode(NSContainer*);
|
2006-11-30 22:32:05 +00:00
|
|
|
void handle_edit_event(HTMLDocument*,nsIDOMEvent*);
|
2007-06-10 22:28:48 +00:00
|
|
|
HRESULT editor_exec_copy(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
|
2007-06-10 22:30:30 +00:00
|
|
|
HRESULT editor_exec_cut(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
|
2007-06-10 22:29:53 +00:00
|
|
|
HRESULT editor_exec_paste(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
|
2008-01-10 11:53:38 +00:00
|
|
|
void handle_edit_load(HTMLDocument*);
|
2007-09-12 09:42:01 +00:00
|
|
|
HRESULT editor_is_dirty(HTMLDocument*);
|
2008-01-10 11:53:38 +00:00
|
|
|
void set_dirty(HTMLDocument*,VARIANT_BOOL);
|
2006-11-30 22:32:05 +00:00
|
|
|
|
2006-09-24 21:10:38 +00:00
|
|
|
extern DWORD mshtml_tls;
|
|
|
|
|
2009-10-26 22:05:10 +00:00
|
|
|
typedef struct task_t task_t;
|
|
|
|
typedef void (*task_proc_t)(task_t*);
|
2007-02-10 16:36:13 +00:00
|
|
|
|
2009-10-26 22:05:10 +00:00
|
|
|
struct task_t {
|
|
|
|
LONG target_magic;
|
|
|
|
task_proc_t proc;
|
2006-09-24 21:12:06 +00:00
|
|
|
struct task_t *next;
|
2009-10-26 22:05:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
task_t header;
|
|
|
|
HTMLDocumentObj *doc;
|
|
|
|
} docobj_task_t;
|
2006-09-24 21:12:06 +00:00
|
|
|
|
2006-09-24 21:10:38 +00:00
|
|
|
typedef struct {
|
|
|
|
HWND thread_hwnd;
|
2006-09-24 21:12:06 +00:00
|
|
|
task_t *task_queue_head;
|
|
|
|
task_t *task_queue_tail;
|
2008-04-21 16:21:19 +00:00
|
|
|
struct list timer_list;
|
2006-09-24 21:10:38 +00:00
|
|
|
} thread_data_t;
|
|
|
|
|
|
|
|
thread_data_t *get_thread_data(BOOL);
|
|
|
|
HWND get_thread_hwnd(void);
|
2009-10-26 22:05:10 +00:00
|
|
|
|
|
|
|
LONG get_task_target_magic(void);
|
|
|
|
void push_task(task_t*,task_proc_t,LONG);
|
|
|
|
void remove_target_tasks(LONG);
|
|
|
|
|
2008-06-27 19:11:38 +00:00
|
|
|
DWORD set_task_timer(HTMLDocument*,DWORD,BOOL,IDispatch*);
|
2008-06-27 19:14:40 +00:00
|
|
|
HRESULT clear_task_timer(HTMLDocument*,BOOL,DWORD);
|
2006-09-24 21:10:38 +00:00
|
|
|
|
2008-04-17 00:32:18 +00:00
|
|
|
void release_typelib(void);
|
2009-09-06 16:54:30 +00:00
|
|
|
HRESULT call_disp_func(IDispatch*,DISPPARAMS*);
|
2007-07-30 22:53:10 +00:00
|
|
|
|
2008-09-30 15:40:19 +00:00
|
|
|
const char *debugstr_variant(const VARIANT*);
|
|
|
|
|
2005-06-27 09:50:56 +00:00
|
|
|
DEFINE_GUID(CLSID_AboutProtocol, 0x3050F406, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
|
|
|
|
DEFINE_GUID(CLSID_JSProtocol, 0x3050F3B2, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
|
|
|
|
DEFINE_GUID(CLSID_MailtoProtocol, 0x3050F3DA, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
|
|
|
|
DEFINE_GUID(CLSID_ResProtocol, 0x3050F3BC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
|
|
|
|
DEFINE_GUID(CLSID_SysimageProtocol, 0x76E67A63, 0x06E9, 0x11D2, 0xA8,0x40, 0x00,0x60,0x08,0x05,0x93,0x82);
|
|
|
|
|
2006-05-24 15:58:27 +00:00
|
|
|
DEFINE_GUID(CLSID_CMarkup,0x3050f4fb,0x98b5,0x11cf,0xbb,0x82,0x00,0xaa,0x00,0xbd,0xce,0x0b);
|
|
|
|
|
2006-07-16 21:21:36 +00:00
|
|
|
/* memory allocation functions */
|
|
|
|
|
2008-09-19 03:35:49 +00:00
|
|
|
static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
|
2006-07-16 21:21:36 +00:00
|
|
|
{
|
|
|
|
return HeapAlloc(GetProcessHeap(), 0, len);
|
|
|
|
}
|
|
|
|
|
2008-09-19 03:35:49 +00:00
|
|
|
static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len)
|
2006-09-24 21:10:38 +00:00
|
|
|
{
|
|
|
|
return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
|
|
|
|
}
|
|
|
|
|
2008-09-19 03:35:49 +00:00
|
|
|
static inline void * __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t len)
|
2006-07-16 21:21:36 +00:00
|
|
|
{
|
|
|
|
return HeapReAlloc(GetProcessHeap(), 0, mem, len);
|
|
|
|
}
|
|
|
|
|
2009-09-06 17:05:40 +00:00
|
|
|
static inline void * __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t len)
|
|
|
|
{
|
|
|
|
return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len);
|
|
|
|
}
|
|
|
|
|
2007-12-05 20:52:31 +00:00
|
|
|
static inline BOOL heap_free(void *mem)
|
2006-07-16 21:21:36 +00:00
|
|
|
{
|
|
|
|
return HeapFree(GetProcessHeap(), 0, mem);
|
|
|
|
}
|
|
|
|
|
2007-12-31 00:32:48 +00:00
|
|
|
static inline LPWSTR heap_strdupW(LPCWSTR str)
|
|
|
|
{
|
|
|
|
LPWSTR ret = NULL;
|
|
|
|
|
|
|
|
if(str) {
|
|
|
|
DWORD size;
|
|
|
|
|
|
|
|
size = (strlenW(str)+1)*sizeof(WCHAR);
|
|
|
|
ret = heap_alloc(size);
|
|
|
|
memcpy(ret, str, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-03-26 14:24:03 +00:00
|
|
|
static inline char *heap_strdupA(const char *str)
|
|
|
|
{
|
|
|
|
char *ret = NULL;
|
|
|
|
|
|
|
|
if(str) {
|
|
|
|
DWORD size;
|
|
|
|
|
|
|
|
size = strlen(str)+1;
|
|
|
|
ret = heap_alloc(size);
|
|
|
|
memcpy(ret, str, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-02-01 14:31:19 +00:00
|
|
|
static inline WCHAR *heap_strdupAtoW(const char *str)
|
|
|
|
{
|
|
|
|
LPWSTR ret = NULL;
|
|
|
|
|
|
|
|
if(str) {
|
|
|
|
DWORD len;
|
|
|
|
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
|
|
|
|
ret = heap_alloc(len*sizeof(WCHAR));
|
2008-03-26 14:24:20 +00:00
|
|
|
MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
|
2008-02-01 14:31:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2007-12-31 00:32:48 +00:00
|
|
|
|
2008-03-26 14:24:03 +00:00
|
|
|
static inline char *heap_strdupWtoA(LPCWSTR str)
|
|
|
|
{
|
|
|
|
char *ret = NULL;
|
|
|
|
|
|
|
|
if(str) {
|
|
|
|
DWORD size = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
|
|
|
|
ret = heap_alloc(size);
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, str, -1, ret, size, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-10-26 22:02:50 +00:00
|
|
|
static inline void windowref_addref(windowref_t *ref)
|
|
|
|
{
|
|
|
|
InterlockedIncrement(&ref->ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void windowref_release(windowref_t *ref)
|
|
|
|
{
|
|
|
|
if(!InterlockedDecrement(&ref->ref))
|
|
|
|
heap_free(ref);
|
|
|
|
}
|
|
|
|
|
2006-11-09 22:54:09 +00:00
|
|
|
HINSTANCE get_shdoclc(void);
|
|
|
|
|
2005-04-14 11:30:50 +00:00
|
|
|
extern HINSTANCE hInst;
|