2 * Copyright 2006 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 "wine/debug.h"
22 WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
24 static inline InternetExplorer *impl_from_IWebBrowser2(IWebBrowser2 *iface)
26 return CONTAINING_RECORD(iface, InternetExplorer, IWebBrowser2_iface);
29 static HRESULT WINAPI InternetExplorer_QueryInterface(IWebBrowser2 *iface, REFIID riid, LPVOID *ppv)
31 InternetExplorer *This = impl_from_IWebBrowser2(iface);
35 if(IsEqualGUID(&IID_IUnknown, riid)) {
36 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
37 *ppv = &This->IWebBrowser2_iface;
38 }else if(IsEqualGUID(&IID_IDispatch, riid)) {
39 TRACE("(%p)->(IID_IDispatch %p)\n", This, ppv);
40 *ppv = &This->IWebBrowser2_iface;
41 }else if(IsEqualGUID(&IID_IWebBrowser, riid)) {
42 TRACE("(%p)->(IID_IWebBrowser %p)\n", This, ppv);
43 *ppv = &This->IWebBrowser2_iface;
44 }else if(IsEqualGUID(&IID_IWebBrowserApp, riid)) {
45 TRACE("(%p)->(IID_IWebBrowserApp %p)\n", This, ppv);
46 *ppv = &This->IWebBrowser2_iface;
47 }else if(IsEqualGUID(&IID_IWebBrowser2, riid)) {
48 TRACE("(%p)->(IID_IWebBrowser2 %p)\n", This, ppv);
49 *ppv = &This->IWebBrowser2_iface;
50 }else if(IsEqualGUID(&IID_IConnectionPointContainer, riid)) {
51 TRACE("(%p)->(IID_IConnectionPointContainer %p)\n", This, ppv);
52 *ppv = &This->doc_host.cps.IConnectionPointContainer_iface;
53 }else if(HlinkFrame_QI(&This->hlink_frame, riid, ppv)) {
58 IUnknown_AddRef((IUnknown*)*ppv);
62 WARN("(%p)->(%s %p) interface not supported\n", This, debugstr_guid(riid), ppv);
66 static ULONG WINAPI InternetExplorer_AddRef(IWebBrowser2 *iface)
68 InternetExplorer *This = impl_from_IWebBrowser2(iface);
69 LONG ref = InterlockedIncrement(&This->ref);
70 TRACE("(%p) ref=%d\n", This, ref);
74 static ULONG WINAPI InternetExplorer_Release(IWebBrowser2 *iface)
76 InternetExplorer *This = impl_from_IWebBrowser2(iface);
77 LONG ref = InterlockedDecrement(&This->ref);
79 TRACE("(%p) ref=%d\n", This, ref);
82 DocHost_Release(&This->doc_host);
89 static HRESULT WINAPI InternetExplorer_GetTypeInfoCount(IWebBrowser2 *iface, UINT *pctinfo)
91 InternetExplorer *This = impl_from_IWebBrowser2(iface);
92 FIXME("(%p)->(%p)\n", This, pctinfo);
96 static HRESULT WINAPI InternetExplorer_GetTypeInfo(IWebBrowser2 *iface, UINT iTInfo, LCID lcid,
99 InternetExplorer *This = impl_from_IWebBrowser2(iface);
100 FIXME("(%p)->(%d %d %p)\n", This, iTInfo, lcid, ppTInfo);
104 static HRESULT WINAPI InternetExplorer_GetIDsOfNames(IWebBrowser2 *iface, REFIID riid,
105 LPOLESTR *rgszNames, UINT cNames,
106 LCID lcid, DISPID *rgDispId)
108 InternetExplorer *This = impl_from_IWebBrowser2(iface);
109 FIXME("(%p)->(%s %p %d %d %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
114 static HRESULT WINAPI InternetExplorer_Invoke(IWebBrowser2 *iface, DISPID dispIdMember,
115 REFIID riid, LCID lcid, WORD wFlags,
116 DISPPARAMS *pDispParams, VARIANT *pVarResult,
117 EXCEPINFO *pExepInfo, UINT *puArgErr)
119 InternetExplorer *This = impl_from_IWebBrowser2(iface);
120 FIXME("(%p)->(%d %s %d %08x %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
121 lcid, wFlags, pDispParams, pVarResult, pExepInfo, puArgErr);
125 static HRESULT WINAPI InternetExplorer_GoBack(IWebBrowser2 *iface)
127 InternetExplorer *This = impl_from_IWebBrowser2(iface);
128 FIXME("(%p)\n", This);
132 static HRESULT WINAPI InternetExplorer_GoForward(IWebBrowser2 *iface)
134 InternetExplorer *This = impl_from_IWebBrowser2(iface);
135 FIXME("(%p)\n", This);
139 static HRESULT WINAPI InternetExplorer_GoHome(IWebBrowser2 *iface)
141 InternetExplorer *This = impl_from_IWebBrowser2(iface);
142 TRACE("(%p)\n", This);
143 return go_home(&This->doc_host);
146 static HRESULT WINAPI InternetExplorer_GoSearch(IWebBrowser2 *iface)
148 InternetExplorer *This = impl_from_IWebBrowser2(iface);
149 FIXME("(%p)\n", This);
153 static HRESULT WINAPI InternetExplorer_Navigate(IWebBrowser2 *iface, BSTR szUrl,
154 VARIANT *Flags, VARIANT *TargetFrameName,
155 VARIANT *PostData, VARIANT *Headers)
157 InternetExplorer *This = impl_from_IWebBrowser2(iface);
159 TRACE("(%p)->(%s %p %p %p %p)\n", This, debugstr_w(szUrl), Flags, TargetFrameName,
162 return navigate_url(&This->doc_host, szUrl, Flags, TargetFrameName, PostData, Headers);
165 static HRESULT WINAPI InternetExplorer_Refresh(IWebBrowser2 *iface)
167 InternetExplorer *This = impl_from_IWebBrowser2(iface);
168 FIXME("(%p)\n", This);
172 static HRESULT WINAPI InternetExplorer_Refresh2(IWebBrowser2 *iface, VARIANT *Level)
174 InternetExplorer *This = impl_from_IWebBrowser2(iface);
175 FIXME("(%p)->(%p)\n", This, Level);
179 static HRESULT WINAPI InternetExplorer_Stop(IWebBrowser2 *iface)
181 InternetExplorer *This = impl_from_IWebBrowser2(iface);
182 FIXME("(%p)\n", This);
186 static HRESULT WINAPI InternetExplorer_get_Application(IWebBrowser2 *iface, IDispatch **ppDisp)
188 InternetExplorer *This = impl_from_IWebBrowser2(iface);
189 FIXME("(%p)->(%p)\n", This, ppDisp);
193 static HRESULT WINAPI InternetExplorer_get_Parent(IWebBrowser2 *iface, IDispatch **ppDisp)
195 InternetExplorer *This = impl_from_IWebBrowser2(iface);
196 FIXME("(%p)->(%p)\n", This, ppDisp);
200 static HRESULT WINAPI InternetExplorer_get_Container(IWebBrowser2 *iface, IDispatch **ppDisp)
202 InternetExplorer *This = impl_from_IWebBrowser2(iface);
203 FIXME("(%p)->(%p)\n", This, ppDisp);
207 static HRESULT WINAPI InternetExplorer_get_Document(IWebBrowser2 *iface, IDispatch **ppDisp)
209 InternetExplorer *This = impl_from_IWebBrowser2(iface);
210 FIXME("(%p)->(%p)\n", This, ppDisp);
214 static HRESULT WINAPI InternetExplorer_get_TopLevelContainer(IWebBrowser2 *iface, VARIANT_BOOL *pBool)
216 InternetExplorer *This = impl_from_IWebBrowser2(iface);
217 FIXME("(%p)->(%p)\n", This, pBool);
221 static HRESULT WINAPI InternetExplorer_get_Type(IWebBrowser2 *iface, BSTR *Type)
223 InternetExplorer *This = impl_from_IWebBrowser2(iface);
224 FIXME("(%p)->(%p)\n", This, Type);
228 static HRESULT WINAPI InternetExplorer_get_Left(IWebBrowser2 *iface, LONG *pl)
230 InternetExplorer *This = impl_from_IWebBrowser2(iface);
231 FIXME("(%p)->(%p)\n", This, pl);
235 static HRESULT WINAPI InternetExplorer_put_Left(IWebBrowser2 *iface, LONG Left)
237 InternetExplorer *This = impl_from_IWebBrowser2(iface);
238 FIXME("(%p)->(%d)\n", This, Left);
242 static HRESULT WINAPI InternetExplorer_get_Top(IWebBrowser2 *iface, LONG *pl)
244 InternetExplorer *This = impl_from_IWebBrowser2(iface);
245 FIXME("(%p)->(%p)\n", This, pl);
249 static HRESULT WINAPI InternetExplorer_put_Top(IWebBrowser2 *iface, LONG Top)
251 InternetExplorer *This = impl_from_IWebBrowser2(iface);
252 FIXME("(%p)->(%d)\n", This, Top);
256 static HRESULT WINAPI InternetExplorer_get_Width(IWebBrowser2 *iface, LONG *pl)
258 InternetExplorer *This = impl_from_IWebBrowser2(iface);
259 FIXME("(%p)->(%p)\n", This, pl);
263 static HRESULT WINAPI InternetExplorer_put_Width(IWebBrowser2 *iface, LONG Width)
265 InternetExplorer *This = impl_from_IWebBrowser2(iface);
266 FIXME("(%p)->(%d)\n", This, Width);
270 static HRESULT WINAPI InternetExplorer_get_Height(IWebBrowser2 *iface, LONG *pl)
272 InternetExplorer *This = impl_from_IWebBrowser2(iface);
273 FIXME("(%p)->(%p)\n", This, pl);
277 static HRESULT WINAPI InternetExplorer_put_Height(IWebBrowser2 *iface, LONG Height)
279 InternetExplorer *This = impl_from_IWebBrowser2(iface);
280 FIXME("(%p)->(%d)\n", This, Height);
284 static HRESULT WINAPI InternetExplorer_get_LocationName(IWebBrowser2 *iface, BSTR *LocationName)
286 InternetExplorer *This = impl_from_IWebBrowser2(iface);
287 FIXME("(%p)->(%p)\n", This, LocationName);
291 static HRESULT WINAPI InternetExplorer_get_LocationURL(IWebBrowser2 *iface, BSTR *LocationURL)
293 InternetExplorer *This = impl_from_IWebBrowser2(iface);
295 TRACE("(%p)->(%p)\n", This, LocationURL);
297 return get_location_url(&This->doc_host, LocationURL);
300 static HRESULT WINAPI InternetExplorer_get_Busy(IWebBrowser2 *iface, VARIANT_BOOL *pBool)
302 InternetExplorer *This = impl_from_IWebBrowser2(iface);
303 FIXME("(%p)->(%p)\n", This, pBool);
307 static HRESULT WINAPI InternetExplorer_Quit(IWebBrowser2 *iface)
309 InternetExplorer *This = impl_from_IWebBrowser2(iface);
310 FIXME("(%p)\n", This);
314 static HRESULT WINAPI InternetExplorer_ClientToWindow(IWebBrowser2 *iface, int *pcx, int *pcy)
316 InternetExplorer *This = impl_from_IWebBrowser2(iface);
317 FIXME("(%p)->(%p %p)\n", This, pcx, pcy);
321 static HRESULT WINAPI InternetExplorer_PutProperty(IWebBrowser2 *iface, BSTR szProperty, VARIANT vtValue)
323 InternetExplorer *This = impl_from_IWebBrowser2(iface);
324 FIXME("(%p)->(%s)\n", This, debugstr_w(szProperty));
328 static HRESULT WINAPI InternetExplorer_GetProperty(IWebBrowser2 *iface, BSTR szProperty, VARIANT *pvtValue)
330 InternetExplorer *This = impl_from_IWebBrowser2(iface);
331 FIXME("(%p)->(%s %p)\n", This, debugstr_w(szProperty), pvtValue);
335 static HRESULT WINAPI InternetExplorer_get_Name(IWebBrowser2 *iface, BSTR *Name)
337 InternetExplorer *This = impl_from_IWebBrowser2(iface);
338 FIXME("(%p)->(%p)\n", This, Name);
342 static HRESULT WINAPI InternetExplorer_get_HWND(IWebBrowser2 *iface, LONG *pHWND)
344 InternetExplorer *This = impl_from_IWebBrowser2(iface);
345 FIXME("(%p)->(%p)\n", This, pHWND);
349 static HRESULT WINAPI InternetExplorer_get_FullName(IWebBrowser2 *iface, BSTR *FullName)
351 InternetExplorer *This = impl_from_IWebBrowser2(iface);
352 FIXME("(%p)->(%p)\n", This, FullName);
356 static HRESULT WINAPI InternetExplorer_get_Path(IWebBrowser2 *iface, BSTR *Path)
358 InternetExplorer *This = impl_from_IWebBrowser2(iface);
359 FIXME("(%p)->(%p)\n", This, Path);
363 static HRESULT WINAPI InternetExplorer_get_Visible(IWebBrowser2 *iface, VARIANT_BOOL *pBool)
365 InternetExplorer *This = impl_from_IWebBrowser2(iface);
366 FIXME("(%p)->(%p)\n", This, pBool);
370 static HRESULT WINAPI InternetExplorer_put_Visible(IWebBrowser2 *iface, VARIANT_BOOL Value)
372 InternetExplorer *This = impl_from_IWebBrowser2(iface);
373 TRACE("(%p)->(%x)\n", This, Value);
375 ShowWindow(This->frame_hwnd, Value ? SW_SHOW : SW_HIDE);
380 static HRESULT WINAPI InternetExplorer_get_StatusBar(IWebBrowser2 *iface, VARIANT_BOOL *pBool)
382 InternetExplorer *This = impl_from_IWebBrowser2(iface);
383 FIXME("(%p)->(%p)\n", This, pBool);
387 static HRESULT WINAPI InternetExplorer_put_StatusBar(IWebBrowser2 *iface, VARIANT_BOOL Value)
389 InternetExplorer *This = impl_from_IWebBrowser2(iface);
390 FIXME("(%p)->(%x)\n", This, Value);
394 static HRESULT WINAPI InternetExplorer_get_StatusText(IWebBrowser2 *iface, BSTR *StatusText)
396 InternetExplorer *This = impl_from_IWebBrowser2(iface);
397 FIXME("(%p)->(%p)\n", This, StatusText);
401 static HRESULT WINAPI InternetExplorer_put_StatusText(IWebBrowser2 *iface, BSTR StatusText)
403 InternetExplorer *This = impl_from_IWebBrowser2(iface);
405 TRACE("(%p)->(%s)\n", This, debugstr_w(StatusText));
407 return update_ie_statustext(This, StatusText);
410 static HRESULT WINAPI InternetExplorer_get_ToolBar(IWebBrowser2 *iface, int *Value)
412 InternetExplorer *This = impl_from_IWebBrowser2(iface);
413 FIXME("(%p)->(%p)\n", This, Value);
417 static HRESULT WINAPI InternetExplorer_put_ToolBar(IWebBrowser2 *iface, int Value)
419 InternetExplorer *This = impl_from_IWebBrowser2(iface);
420 FIXME("(%p)->(%d)\n", This, Value);
424 static HRESULT WINAPI InternetExplorer_get_MenuBar(IWebBrowser2 *iface, VARIANT_BOOL *Value)
426 InternetExplorer *This = impl_from_IWebBrowser2(iface);
427 FIXME("(%p)->(%p)\n", This, Value);
431 static HRESULT WINAPI InternetExplorer_put_MenuBar(IWebBrowser2 *iface, VARIANT_BOOL Value)
433 InternetExplorer *This = impl_from_IWebBrowser2(iface);
436 TRACE("(%p)->(%x)\n", This, Value);
441 if(!SetMenu(This->frame_hwnd, menu))
442 return HRESULT_FROM_WIN32(GetLastError());
447 static HRESULT WINAPI InternetExplorer_get_FullScreen(IWebBrowser2 *iface, VARIANT_BOOL *pbFullScreen)
449 InternetExplorer *This = impl_from_IWebBrowser2(iface);
450 FIXME("(%p)->(%p)\n", This, pbFullScreen);
454 static HRESULT WINAPI InternetExplorer_put_FullScreen(IWebBrowser2 *iface, VARIANT_BOOL bFullScreen)
456 InternetExplorer *This = impl_from_IWebBrowser2(iface);
457 FIXME("(%p)->(%x)\n", This, bFullScreen);
461 static HRESULT WINAPI InternetExplorer_Navigate2(IWebBrowser2 *iface, VARIANT *URL, VARIANT *Flags,
462 VARIANT *TargetFrameName, VARIANT *PostData, VARIANT *Headers)
464 InternetExplorer *This = impl_from_IWebBrowser2(iface);
466 TRACE("(%p)->(%p %p %p %p %p)\n", This, URL, Flags, TargetFrameName, PostData, Headers);
471 if(V_VT(URL) != VT_BSTR) {
472 FIXME("Unsupported V_VT(URL) %d\n", V_VT(URL));
476 return navigate_url(&This->doc_host, V_BSTR(URL), Flags, TargetFrameName, PostData, Headers);
479 static HRESULT WINAPI InternetExplorer_QueryStatusWB(IWebBrowser2 *iface, OLECMDID cmdID, OLECMDF *pcmdf)
481 InternetExplorer *This = impl_from_IWebBrowser2(iface);
482 FIXME("(%p)->(%d %p)\n", This, cmdID, pcmdf);
486 static HRESULT WINAPI InternetExplorer_ExecWB(IWebBrowser2 *iface, OLECMDID cmdID,
487 OLECMDEXECOPT cmdexecopt, VARIANT *pvaIn, VARIANT *pvaOut)
489 InternetExplorer *This = impl_from_IWebBrowser2(iface);
490 FIXME("(%p)->(%d %d %p %p)\n", This, cmdID, cmdexecopt, pvaIn, pvaOut);
494 static HRESULT WINAPI InternetExplorer_ShowBrowserBar(IWebBrowser2 *iface, VARIANT *pvaClsid,
495 VARIANT *pvarShow, VARIANT *pvarSize)
497 InternetExplorer *This = impl_from_IWebBrowser2(iface);
498 FIXME("(%p)->(%p %p %p)\n", This, pvaClsid, pvarShow, pvarSize);
502 static HRESULT WINAPI InternetExplorer_get_ReadyState(IWebBrowser2 *iface, READYSTATE *lpReadyState)
504 InternetExplorer *This = impl_from_IWebBrowser2(iface);
505 FIXME("(%p)->(%p)\n", This, lpReadyState);
509 static HRESULT WINAPI InternetExplorer_get_Offline(IWebBrowser2 *iface, VARIANT_BOOL *pbOffline)
511 InternetExplorer *This = impl_from_IWebBrowser2(iface);
512 FIXME("(%p)->(%p)\n", This, pbOffline);
516 static HRESULT WINAPI InternetExplorer_put_Offline(IWebBrowser2 *iface, VARIANT_BOOL bOffline)
518 InternetExplorer *This = impl_from_IWebBrowser2(iface);
519 FIXME("(%p)->(%x)\n", This, bOffline);
523 static HRESULT WINAPI InternetExplorer_get_Silent(IWebBrowser2 *iface, VARIANT_BOOL *pbSilent)
525 InternetExplorer *This = impl_from_IWebBrowser2(iface);
526 FIXME("(%p)->(%p)\n", This, pbSilent);
530 static HRESULT WINAPI InternetExplorer_put_Silent(IWebBrowser2 *iface, VARIANT_BOOL bSilent)
532 InternetExplorer *This = impl_from_IWebBrowser2(iface);
533 FIXME("(%p)->(%x)\n", This, bSilent);
537 static HRESULT WINAPI InternetExplorer_get_RegisterAsBrowser(IWebBrowser2 *iface,
538 VARIANT_BOOL *pbRegister)
540 InternetExplorer *This = impl_from_IWebBrowser2(iface);
541 FIXME("(%p)->(%p)\n", This, pbRegister);
545 static HRESULT WINAPI InternetExplorer_put_RegisterAsBrowser(IWebBrowser2 *iface,
546 VARIANT_BOOL bRegister)
548 InternetExplorer *This = impl_from_IWebBrowser2(iface);
549 FIXME("(%p)->(%x)\n", This, bRegister);
553 static HRESULT WINAPI InternetExplorer_get_RegisterAsDropTarget(IWebBrowser2 *iface,
554 VARIANT_BOOL *pbRegister)
556 InternetExplorer *This = impl_from_IWebBrowser2(iface);
557 FIXME("(%p)->(%p)\n", This, pbRegister);
561 static HRESULT WINAPI InternetExplorer_put_RegisterAsDropTarget(IWebBrowser2 *iface,
562 VARIANT_BOOL bRegister)
564 InternetExplorer *This = impl_from_IWebBrowser2(iface);
565 FIXME("(%p)->(%x)\n", This, bRegister);
569 static HRESULT WINAPI InternetExplorer_get_TheaterMode(IWebBrowser2 *iface, VARIANT_BOOL *pbRegister)
571 InternetExplorer *This = impl_from_IWebBrowser2(iface);
572 FIXME("(%p)->(%p)\n", This, pbRegister);
576 static HRESULT WINAPI InternetExplorer_put_TheaterMode(IWebBrowser2 *iface, VARIANT_BOOL bRegister)
578 InternetExplorer *This = impl_from_IWebBrowser2(iface);
579 FIXME("(%p)->(%x)\n", This, bRegister);
583 static HRESULT WINAPI InternetExplorer_get_AddressBar(IWebBrowser2 *iface, VARIANT_BOOL *Value)
585 InternetExplorer *This = impl_from_IWebBrowser2(iface);
586 FIXME("(%p)->(%p)\n", This, Value);
590 static HRESULT WINAPI InternetExplorer_put_AddressBar(IWebBrowser2 *iface, VARIANT_BOOL Value)
592 InternetExplorer *This = impl_from_IWebBrowser2(iface);
593 FIXME("(%p)->(%x)\n", This, Value);
597 static HRESULT WINAPI InternetExplorer_get_Resizable(IWebBrowser2 *iface, VARIANT_BOOL *Value)
599 InternetExplorer *This = impl_from_IWebBrowser2(iface);
600 FIXME("(%p)->(%p)\n", This, Value);
604 static HRESULT WINAPI InternetExplorer_put_Resizable(IWebBrowser2 *iface, VARIANT_BOOL Value)
606 InternetExplorer *This = impl_from_IWebBrowser2(iface);
607 FIXME("(%p)->(%x)\n", This, Value);
611 #undef impl_from_IWebBrowser2
613 static const IWebBrowser2Vtbl InternetExplorerVtbl =
615 InternetExplorer_QueryInterface,
616 InternetExplorer_AddRef,
617 InternetExplorer_Release,
618 InternetExplorer_GetTypeInfoCount,
619 InternetExplorer_GetTypeInfo,
620 InternetExplorer_GetIDsOfNames,
621 InternetExplorer_Invoke,
622 InternetExplorer_GoBack,
623 InternetExplorer_GoForward,
624 InternetExplorer_GoHome,
625 InternetExplorer_GoSearch,
626 InternetExplorer_Navigate,
627 InternetExplorer_Refresh,
628 InternetExplorer_Refresh2,
629 InternetExplorer_Stop,
630 InternetExplorer_get_Application,
631 InternetExplorer_get_Parent,
632 InternetExplorer_get_Container,
633 InternetExplorer_get_Document,
634 InternetExplorer_get_TopLevelContainer,
635 InternetExplorer_get_Type,
636 InternetExplorer_get_Left,
637 InternetExplorer_put_Left,
638 InternetExplorer_get_Top,
639 InternetExplorer_put_Top,
640 InternetExplorer_get_Width,
641 InternetExplorer_put_Width,
642 InternetExplorer_get_Height,
643 InternetExplorer_put_Height,
644 InternetExplorer_get_LocationName,
645 InternetExplorer_get_LocationURL,
646 InternetExplorer_get_Busy,
647 InternetExplorer_Quit,
648 InternetExplorer_ClientToWindow,
649 InternetExplorer_PutProperty,
650 InternetExplorer_GetProperty,
651 InternetExplorer_get_Name,
652 InternetExplorer_get_HWND,
653 InternetExplorer_get_FullName,
654 InternetExplorer_get_Path,
655 InternetExplorer_get_Visible,
656 InternetExplorer_put_Visible,
657 InternetExplorer_get_StatusBar,
658 InternetExplorer_put_StatusBar,
659 InternetExplorer_get_StatusText,
660 InternetExplorer_put_StatusText,
661 InternetExplorer_get_ToolBar,
662 InternetExplorer_put_ToolBar,
663 InternetExplorer_get_MenuBar,
664 InternetExplorer_put_MenuBar,
665 InternetExplorer_get_FullScreen,
666 InternetExplorer_put_FullScreen,
667 InternetExplorer_Navigate2,
668 InternetExplorer_QueryStatusWB,
669 InternetExplorer_ExecWB,
670 InternetExplorer_ShowBrowserBar,
671 InternetExplorer_get_ReadyState,
672 InternetExplorer_get_Offline,
673 InternetExplorer_put_Offline,
674 InternetExplorer_get_Silent,
675 InternetExplorer_put_Silent,
676 InternetExplorer_get_RegisterAsBrowser,
677 InternetExplorer_put_RegisterAsBrowser,
678 InternetExplorer_get_RegisterAsDropTarget,
679 InternetExplorer_put_RegisterAsDropTarget,
680 InternetExplorer_get_TheaterMode,
681 InternetExplorer_put_TheaterMode,
682 InternetExplorer_get_AddressBar,
683 InternetExplorer_put_AddressBar,
684 InternetExplorer_get_Resizable,
685 InternetExplorer_put_Resizable
688 void InternetExplorer_WebBrowser_Init(InternetExplorer *This)
690 This->IWebBrowser2_iface.lpVtbl = &InternetExplorerVtbl;