Correct size check.
[wine/dcerpc.git] / dlls / mshtml / mshtml_private.h
bloba37a86962c5a2d8b27b8e8effbe00f250b495086
1 /*
2 * Copyright 2005 Jacek Caban
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #include "docobj.h"
20 #include "mshtml.h"
21 #include "mshtmhst.h"
23 #ifdef INIT_GUID
24 #include "initguid.h"
25 #endif
27 #include "nsiface.h"
29 #define NS_OK ((nsresult)0x00000000L)
30 #define NS_NOINTERFACE ((nsresult)0x80004002L)
31 #define NS_ERROR_NOT_IMPLEMENTED ((nsresult)0x80004001L)
33 #define NS_FAILED(res) ((res) & 0x80000000)
34 #define NS_SUCCEEDED(res) (!NS_FAILED(res))
36 typedef struct NSContainer NSContainer;
37 typedef struct BindStatusCallback BindStatusCallback;
39 typedef struct {
40 const IHTMLDocument2Vtbl *lpHTMLDocument2Vtbl;
41 const IPersistMonikerVtbl *lpPersistMonikerVtbl;
42 const IPersistFileVtbl *lpPersistFileVtbl;
43 const IMonikerPropVtbl *lpMonikerPropVtbl;
44 const IOleObjectVtbl *lpOleObjectVtbl;
45 const IOleDocumentVtbl *lpOleDocumentVtbl;
46 const IOleDocumentViewVtbl *lpOleDocumentViewVtbl;
47 const IOleInPlaceActiveObjectVtbl *lpOleInPlaceActiveObjectVtbl;
48 const IViewObject2Vtbl *lpViewObject2Vtbl;
49 const IOleInPlaceObjectWindowlessVtbl *lpOleInPlaceObjectWindowlessVtbl;
50 const IServiceProviderVtbl *lpServiceProviderVtbl;
51 const IOleCommandTargetVtbl *lpOleCommandTargetVtbl;
52 const IOleControlVtbl *lpOleControlVtbl;
54 LONG ref;
56 NSContainer *nscontainer;
58 IOleClientSite *client;
59 IDocHostUIHandler *hostui;
60 IOleInPlaceSite *ipsite;
61 IOleInPlaceFrame *frame;
63 HWND hwnd;
65 BOOL in_place_active;
66 BOOL ui_active;
67 BOOL has_key_path;
69 BindStatusCallback *status_callback;
70 } HTMLDocument;
72 struct NSContainer {
73 nsIWebBrowser *webbrowser;
74 nsIWebNavigation *navigation;
75 nsIBaseWindow *window;
77 HWND hwnd;
81 #define HTMLDOC(x) ((IHTMLDocument2*) &(x)->lpHTMLDocument2Vtbl)
82 #define PERSIST(x) ((IPersist*) &(x)->lpPersistFileVtbl)
83 #define PERSISTMON(x) ((IPersistMoniker*) &(x)->lpPersistMonikerVtbl)
84 #define PERSISTFILE(x) ((IPersistFile*) &(x)->lpPersistFileVtbl)
85 #define MONPROP(x) ((IMonikerProp*) &(x)->lpMonikerPropVtbl)
86 #define OLEOBJ(x) ((IOleObject*) &(x)->lpOleObjectVtbl)
87 #define OLEDOC(x) ((IOleDocument*) &(x)->lpOleDocumentVtbl)
88 #define DOCVIEW(x) ((IOleDocumentView*) &(x)->lpOleDocumentViewVtbl)
89 #define OLEWIN(x) ((IOleWindow*) &(x)->lpOleInPlaceActiveObjectVtbl)
90 #define ACTOBJ(x) ((IOleInPlaceActiveObject*) &(x)->lpOleInPlaceActiveObjectVtbl)
91 #define VIEWOBJ(x) ((IViewObject*) &(x)->lpViewObject2Vtbl)
92 #define VIEWOBJ2(x) ((IViewObject2*) &(x)->lpViewObject2Vtbl)
93 #define INPLACEOBJ(x) ((IOleInPlaceObject*) &(x)->lpOleInPlaceObjectWindowlessVtbl)
94 #define INPLACEWIN(x) ((IOleInPlaceObjectWindowless*) &(x)->lpOleInPlaceObjectWindowlessVtbl)
95 #define SERVPROV(x) ((IServiceProvider*) &(x)->lpServiceProviderVtbl)
96 #define CMDTARGET(x) ((IOleCommandTarget*) &(x)->lpOleCommandTargetVtbl)
97 #define CONTROL(x) ((IOleControl*) &(x)->lpOleControlVtbl)
98 #define STATUSCLB(x) ((IBindStatusCallback*) &(x)->lpBindStatusCallbackVtbl)
100 #define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))
102 HRESULT HTMLDocument_Create(IUnknown*,REFIID,void**);
104 void HTMLDocument_Persist_Init(HTMLDocument*);
105 void HTMLDocument_OleObj_Init(HTMLDocument*);
106 void HTMLDocument_View_Init(HTMLDocument*);
107 void HTMLDocument_Window_Init(HTMLDocument*);
108 void HTMLDocument_Service_Init(HTMLDocument*);
109 void HTMLDocument_NSContainer_Init(HTMLDocument*);
111 void HTMLDocument_NSContainer_Destroy(HTMLDocument*);
113 HRESULT ProtocolFactory_Create(REFCLSID,REFIID,void**);
115 void close_gecko(void);
117 DEFINE_GUID(CLSID_AboutProtocol, 0x3050F406, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
118 DEFINE_GUID(CLSID_JSProtocol, 0x3050F3B2, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
119 DEFINE_GUID(CLSID_MailtoProtocol, 0x3050F3DA, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
120 DEFINE_GUID(CLSID_ResProtocol, 0x3050F3BC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
121 DEFINE_GUID(CLSID_SysimageProtocol, 0x76E67A63, 0x06E9, 0x11D2, 0xA8,0x40, 0x00,0x60,0x08,0x05,0x93,0x82);
123 extern LONG module_ref;
124 #define LOCK_MODULE() InterlockedIncrement(&module_ref)
125 #define UNLOCK_MODULE() InterlockedDecrement(&module_ref)
127 extern HINSTANCE hInst;