2 * Header includes for shdocvw.dll
4 * Copyright 2001 John R. Sheets (for CodeWeavers)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef __WINE_SHDOCVW_H
22 #define __WINE_SHDOCVW_H
24 #define COM_NO_WINDOWS_H
40 /**********************************************************************
41 * IClassFactory declaration for SHDOCVW.DLL
46 const IClassFactoryVtbl *lpVtbl;
50 extern IClassFactoryImpl SHDOCVW_ClassFactory;
52 /**********************************************************************
53 * Shell Instance Objects
55 extern HRESULT SHDOCVW_GetShellInstanceObjectClassObject(REFCLSID rclsid,
56 REFIID riid, LPVOID *ppvClassObj);
58 /**********************************************************************
59 * WebBrowser declaration for SHDOCVW.DLL
62 /* Interfaces available via WebBrowser object */
64 const IWebBrowser2Vtbl *lpWebBrowser2Vtbl;
65 const IOleObjectVtbl *lpOleObjectVtbl;
66 const IOleInPlaceObjectVtbl *lpOleInPlaceObjectVtbl;
67 const IOleControlVtbl *lpOleControlVtbl;
68 const IPersistStorageVtbl *lpPersistStorageVtbl;
69 const IPersistStreamInitVtbl *lpPersistStreamInitVtbl;
70 const IProvideClassInfo2Vtbl *lpProvideClassInfoVtbl;
71 const IQuickActivateVtbl *lpQuickActivateVtbl;
72 const IConnectionPointContainerVtbl *lpConnectionPointContainerVtbl;
73 const IViewObject2Vtbl *lpViewObjectVtbl;
75 /* Interfaces available for embeded document */
77 const IOleClientSiteVtbl *lpOleClientSiteVtbl;
78 const IOleInPlaceSiteVtbl *lpOleInPlaceSiteVtbl;
79 const IDocHostUIHandler2Vtbl *lpDocHostUIHandlerVtbl;
85 IOleClientSite *client;
86 IOleContainer *container;
92 IOleInPlaceFrame *frame;
93 IOleInPlaceUIWindow *uiwindow;
96 OLEINPLACEFRAMEINFO frameinfo;
98 /* Connection points */
100 IConnectionPoint *cp_wbe2;
101 IConnectionPoint *cp_wbe;
102 IConnectionPoint *cp_pns;
105 #define WEBBROWSER(x) ((IWebBrowser*) &(x)->lpWebBrowser2Vtbl)
106 #define WEBBROWSER2(x) ((IWebBrowser2*) &(x)->lpWebBrowser2Vtbl)
107 #define OLEOBJ(x) ((IOleObject*) &(x)->lpOleObjectVtbl)
108 #define INPLACEOBJ(x) ((IOleInPlaceObject*) &(x)->lpOleInPlaceObjectVtbl)
109 #define CONTROL(x) ((IOleControl*) &(x)->lpOleControlVtbl)
110 #define PERSTORAGE(x) ((IPersistStorage*) &(x)->lpPersistStorageVtbl)
111 #define PERSTRINIT(x) ((IPersistStreamInit*) &(x)->lpPersistStreamInitVtbl)
112 #define CLASSINFO(x) ((IProvideClassInfo2*) &(x)->lpProvideClassInfoVtbl)
113 #define QUICKACT(x) ((IQuickActivate*) &(x)->lpQuickActivateVtbl)
114 #define CONPTCONT(x) ((IConnectionPointContainer*) &(x)->lpConnectionPointContainerVtbl)
115 #define VIEWOBJ(x) ((IViewObject*) &(x)->lpViewObjectVtbl);
116 #define VIEWOBJ2(x) ((IViewObject2*) &(x)->lpViewObjectVtbl);
118 #define CLIENTSITE(x) ((IOleClientSite*) &(x)->lpOleClientSiteVtbl)
119 #define INPLACESITE(x) ((IOleInPlaceSite*) &(x)->lpOleInPlaceSiteVtbl)
120 #define DOCHOSTUI(x) ((IDocHostUIHandler*) &(x)->lpDocHostUIHandlerVtbl)
121 #define DOCHOSTUI2(x) ((IDocHostUIHandler2*) &(x)->lpDocHostUIHandlerVtbl)
123 void WebBrowser_OleObject_Init(WebBrowser*);
124 void WebBrowser_ViewObject_Init(WebBrowser*);
125 void WebBrowser_Persist_Init(WebBrowser*);
126 void WebBrowser_ClassInfo_Init(WebBrowser*);
127 void WebBrowser_Misc_Init(WebBrowser*);
128 void WebBrowser_Events_Init(WebBrowser*);
130 void WebBrowser_ClientSite_Init(WebBrowser*);
131 void WebBrowser_DocHost_Init(WebBrowser*);
133 void WebBrowser_OleObject_Destroy(WebBrowser*);
134 void WebBrowser_Events_Destroy(WebBrowser*);
136 HRESULT WebBrowser_Create(IUnknown*,REFIID,void**);
138 #define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))
140 /**********************************************************************
141 * Dll lifetime tracking declaration for shdocvw.dll
143 extern LONG SHDOCVW_refCount;
144 static inline void SHDOCVW_LockModule(void) { InterlockedIncrement( &SHDOCVW_refCount ); }
145 static inline void SHDOCVW_UnlockModule(void) { InterlockedDecrement( &SHDOCVW_refCount ); }
147 #endif /* __WINE_SHDOCVW_H */