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 #define WEBBROWSER_THIS(iface) DEFINE_THIS(InternetExplorer, WebBrowser2, iface)
26 static HRESULT WINAPI InternetExplorer_QueryInterface(IWebBrowser2 *iface, REFIID riid, LPVOID *ppv)
28 InternetExplorer *This = WEBBROWSER_THIS(iface);
32 if(IsEqualGUID(&IID_IUnknown, riid)) {
33 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
34 *ppv = WEBBROWSER(This);
35 }else if(IsEqualGUID(&IID_IDispatch, riid)) {
36 TRACE("(%p)->(IID_IDispatch %p)\n", This, ppv);
37 *ppv = WEBBROWSER(This);
38 }else if(IsEqualGUID(&IID_IWebBrowser, riid)) {
39 TRACE("(%p)->(IID_IWebBrowser %p)\n", This, ppv);
40 *ppv = WEBBROWSER(This);
41 }else if(IsEqualGUID(&IID_IWebBrowserApp, riid)) {
42 TRACE("(%p)->(IID_IWebBrowserApp %p)\n", This, ppv);
43 *ppv = WEBBROWSER(This);
44 }else if(IsEqualGUID(&IID_IWebBrowser2, riid)) {
45 TRACE("(%p)->(IID_IWebBrowser2 %p)\n", This, ppv);
46 *ppv = WEBBROWSER(This);
47 }else if(IsEqualGUID(&IID_IConnectionPointContainer, riid)) {
48 TRACE("(%p)->(IID_IConnectionPointContainer %p)\n", This, ppv);
49 *ppv = CONPTCONT(&This->doc_host.cps);
53 IUnknown_AddRef((IUnknown*)*ppv);
57 WARN("(%p)->(%s %p) interface not supported\n", This, debugstr_guid(riid), ppv);
61 static ULONG WINAPI InternetExplorer_AddRef(IWebBrowser2 *iface)
63 InternetExplorer *This = WEBBROWSER_THIS(iface);
64 LONG ref = InterlockedIncrement(&This->ref);
65 TRACE("(%p) ref=%ld\n", This, ref);
69 static ULONG WINAPI InternetExplorer_Release(IWebBrowser2 *iface)
71 InternetExplorer *This = WEBBROWSER_THIS(iface);
72 LONG ref = InterlockedDecrement(&This->ref);
74 TRACE("(%p) ref=%ld\n", This, ref);
77 DocHost_Release(&This->doc_host);
84 static HRESULT WINAPI InternetExplorer_GetTypeInfoCount(IWebBrowser2 *iface, UINT *pctinfo)
86 InternetExplorer *This = WEBBROWSER_THIS(iface);
87 FIXME("(%p)->(%p)\n", This, pctinfo);
91 static HRESULT WINAPI InternetExplorer_GetTypeInfo(IWebBrowser2 *iface, UINT iTInfo, LCID lcid,
94 InternetExplorer *This = WEBBROWSER_THIS(iface);
95 FIXME("(%p)->(%d %ld %p)\n", This, iTInfo, lcid, ppTInfo);
99 static HRESULT WINAPI InternetExplorer_GetIDsOfNames(IWebBrowser2 *iface, REFIID riid,
100 LPOLESTR *rgszNames, UINT cNames,
101 LCID lcid, DISPID *rgDispId)
103 InternetExplorer *This = WEBBROWSER_THIS(iface);
104 FIXME("(%p)->(%s %p %d %ld %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
109 static HRESULT WINAPI InternetExplorer_Invoke(IWebBrowser2 *iface, DISPID dispIdMember,
110 REFIID riid, LCID lcid, WORD wFlags,
111 DISPPARAMS *pDispParams, VARIANT *pVarResult,
112 EXCEPINFO *pExepInfo, UINT *puArgErr)
114 InternetExplorer *This = WEBBROWSER_THIS(iface);
115 FIXME("(%p)->(%ld %s %ld %08x %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
116 lcid, wFlags, pDispParams, pVarResult, pExepInfo, puArgErr);
120 static HRESULT WINAPI InternetExplorer_GoBack(IWebBrowser2 *iface)
122 InternetExplorer *This = WEBBROWSER_THIS(iface);
123 FIXME("(%p)\n", This);
127 static HRESULT WINAPI InternetExplorer_GoForward(IWebBrowser2 *iface)
129 InternetExplorer *This = WEBBROWSER_THIS(iface);
130 FIXME("(%p)\n", This);
134 static HRESULT WINAPI InternetExplorer_GoHome(IWebBrowser2 *iface)
136 InternetExplorer *This = WEBBROWSER_THIS(iface);
137 FIXME("(%p)\n", This);
141 static HRESULT WINAPI InternetExplorer_GoSearch(IWebBrowser2 *iface)
143 InternetExplorer *This = WEBBROWSER_THIS(iface);
144 FIXME("(%p)\n", This);
148 static HRESULT WINAPI InternetExplorer_Navigate(IWebBrowser2 *iface, BSTR szUrl,
149 VARIANT *Flags, VARIANT *TargetFrameName,
150 VARIANT *PostData, VARIANT *Headers)
152 InternetExplorer *This = WEBBROWSER_THIS(iface);
153 FIXME("(%p)->(%s %p %p %p %p)\n", This, debugstr_w(szUrl), Flags, TargetFrameName,
158 static HRESULT WINAPI InternetExplorer_Refresh(IWebBrowser2 *iface)
160 InternetExplorer *This = WEBBROWSER_THIS(iface);
161 FIXME("(%p)\n", This);
165 static HRESULT WINAPI InternetExplorer_Refresh2(IWebBrowser2 *iface, VARIANT *Level)
167 InternetExplorer *This = WEBBROWSER_THIS(iface);
168 FIXME("(%p)->(%p)\n", This, Level);
172 static HRESULT WINAPI InternetExplorer_Stop(IWebBrowser2 *iface)
174 InternetExplorer *This = WEBBROWSER_THIS(iface);
175 FIXME("(%p)\n", This);
179 static HRESULT WINAPI InternetExplorer_get_Application(IWebBrowser2 *iface, IDispatch **ppDisp)
181 InternetExplorer *This = WEBBROWSER_THIS(iface);
182 FIXME("(%p)->(%p)\n", This, ppDisp);
186 static HRESULT WINAPI InternetExplorer_get_Parent(IWebBrowser2 *iface, IDispatch **ppDisp)
188 InternetExplorer *This = WEBBROWSER_THIS(iface);
189 FIXME("(%p)->(%p)\n", This, ppDisp);
193 static HRESULT WINAPI InternetExplorer_get_Container(IWebBrowser2 *iface, IDispatch **ppDisp)
195 InternetExplorer *This = WEBBROWSER_THIS(iface);
196 FIXME("(%p)->(%p)\n", This, ppDisp);
200 static HRESULT WINAPI InternetExplorer_get_Document(IWebBrowser2 *iface, IDispatch **ppDisp)
202 InternetExplorer *This = WEBBROWSER_THIS(iface);
203 FIXME("(%p)->(%p)\n", This, ppDisp);
207 static HRESULT WINAPI InternetExplorer_get_TopLevelContainer(IWebBrowser2 *iface, VARIANT_BOOL *pBool)
209 InternetExplorer *This = WEBBROWSER_THIS(iface);
210 FIXME("(%p)->(%p)\n", This, pBool);
214 static HRESULT WINAPI InternetExplorer_get_Type(IWebBrowser2 *iface, BSTR *Type)
216 InternetExplorer *This = WEBBROWSER_THIS(iface);
217 FIXME("(%p)->(%p)\n", This, Type);
221 static HRESULT WINAPI InternetExplorer_get_Left(IWebBrowser2 *iface, long *pl)
223 InternetExplorer *This = WEBBROWSER_THIS(iface);
224 FIXME("(%p)->(%p)\n", This, pl);
228 static HRESULT WINAPI InternetExplorer_put_Left(IWebBrowser2 *iface, long Left)
230 InternetExplorer *This = WEBBROWSER_THIS(iface);
231 FIXME("(%p)->(%ld)\n", This, Left);
235 static HRESULT WINAPI InternetExplorer_get_Top(IWebBrowser2 *iface, long *pl)
237 InternetExplorer *This = WEBBROWSER_THIS(iface);
238 FIXME("(%p)->(%p)\n", This, pl);
242 static HRESULT WINAPI InternetExplorer_put_Top(IWebBrowser2 *iface, long Top)
244 InternetExplorer *This = WEBBROWSER_THIS(iface);
245 FIXME("(%p)->(%ld)\n", This, Top);
249 static HRESULT WINAPI InternetExplorer_get_Width(IWebBrowser2 *iface, long *pl)
251 InternetExplorer *This = WEBBROWSER_THIS(iface);
252 FIXME("(%p)->(%p)\n", This, pl);
256 static HRESULT WINAPI InternetExplorer_put_Width(IWebBrowser2 *iface, long Width)
258 InternetExplorer *This = WEBBROWSER_THIS(iface);
259 FIXME("(%p)->(%ld)\n", This, Width);
263 static HRESULT WINAPI InternetExplorer_get_Height(IWebBrowser2 *iface, long *pl)
265 InternetExplorer *This = WEBBROWSER_THIS(iface);
266 FIXME("(%p)->(%p)\n", This, pl);
270 static HRESULT WINAPI InternetExplorer_put_Height(IWebBrowser2 *iface, long Height)
272 InternetExplorer *This = WEBBROWSER_THIS(iface);
273 FIXME("(%p)->(%ld)\n", This, Height);
277 static HRESULT WINAPI InternetExplorer_get_LocationName(IWebBrowser2 *iface, BSTR *LocationName)
279 InternetExplorer *This = WEBBROWSER_THIS(iface);
280 FIXME("(%p)->(%p)\n", This, LocationName);
284 static HRESULT WINAPI InternetExplorer_get_LocationURL(IWebBrowser2 *iface, BSTR *LocationURL)
286 InternetExplorer *This = WEBBROWSER_THIS(iface);
287 FIXME("(%p)->(%p)\n", This, LocationURL);
291 static HRESULT WINAPI InternetExplorer_get_Busy(IWebBrowser2 *iface, VARIANT_BOOL *pBool)
293 InternetExplorer *This = WEBBROWSER_THIS(iface);
294 FIXME("(%p)->(%p)\n", This, pBool);
298 static HRESULT WINAPI InternetExplorer_Quit(IWebBrowser2 *iface)
300 InternetExplorer *This = WEBBROWSER_THIS(iface);
301 FIXME("(%p)\n", This);
305 static HRESULT WINAPI InternetExplorer_ClientToWindow(IWebBrowser2 *iface, int *pcx, int *pcy)
307 InternetExplorer *This = WEBBROWSER_THIS(iface);
308 FIXME("(%p)->(%p %p)\n", This, pcx, pcy);
312 static HRESULT WINAPI InternetExplorer_PutProperty(IWebBrowser2 *iface, BSTR szProperty, VARIANT vtValue)
314 InternetExplorer *This = WEBBROWSER_THIS(iface);
315 FIXME("(%p)->(%s)\n", This, debugstr_w(szProperty));
319 static HRESULT WINAPI InternetExplorer_GetProperty(IWebBrowser2 *iface, BSTR szProperty, VARIANT *pvtValue)
321 InternetExplorer *This = WEBBROWSER_THIS(iface);
322 FIXME("(%p)->(%s %p)\n", This, debugstr_w(szProperty), pvtValue);
326 static HRESULT WINAPI InternetExplorer_get_Name(IWebBrowser2 *iface, BSTR *Name)
328 InternetExplorer *This = WEBBROWSER_THIS(iface);
329 FIXME("(%p)->(%p)\n", This, Name);
333 static HRESULT WINAPI InternetExplorer_get_HWND(IWebBrowser2 *iface, long *pHWND)
335 InternetExplorer *This = WEBBROWSER_THIS(iface);
336 FIXME("(%p)->(%p)\n", This, pHWND);
340 static HRESULT WINAPI InternetExplorer_get_FullName(IWebBrowser2 *iface, BSTR *FullName)
342 InternetExplorer *This = WEBBROWSER_THIS(iface);
343 FIXME("(%p)->(%p)\n", This, FullName);
347 static HRESULT WINAPI InternetExplorer_get_Path(IWebBrowser2 *iface, BSTR *Path)
349 InternetExplorer *This = WEBBROWSER_THIS(iface);
350 FIXME("(%p)->(%p)\n", This, Path);
354 static HRESULT WINAPI InternetExplorer_get_Visible(IWebBrowser2 *iface, VARIANT_BOOL *pBool)
356 InternetExplorer *This = WEBBROWSER_THIS(iface);
357 FIXME("(%p)->(%p)\n", This, pBool);
361 static HRESULT WINAPI InternetExplorer_put_Visible(IWebBrowser2 *iface, VARIANT_BOOL Value)
363 InternetExplorer *This = WEBBROWSER_THIS(iface);
364 TRACE("(%p)->(%x)\n", This, Value);
366 ShowWindow(This->frame_hwnd, Value ? SW_SHOW : SW_HIDE);
371 static HRESULT WINAPI InternetExplorer_get_StatusBar(IWebBrowser2 *iface, VARIANT_BOOL *pBool)
373 InternetExplorer *This = WEBBROWSER_THIS(iface);
374 FIXME("(%p)->(%p)\n", This, pBool);
378 static HRESULT WINAPI InternetExplorer_put_StatusBar(IWebBrowser2 *iface, VARIANT_BOOL Value)
380 InternetExplorer *This = WEBBROWSER_THIS(iface);
381 FIXME("(%p)->(%x)\n", This, Value);
385 static HRESULT WINAPI InternetExplorer_get_StatusText(IWebBrowser2 *iface, BSTR *StatusText)
387 InternetExplorer *This = WEBBROWSER_THIS(iface);
388 FIXME("(%p)->(%p)\n", This, StatusText);
392 static HRESULT WINAPI InternetExplorer_put_StatusText(IWebBrowser2 *iface, BSTR StatusText)
394 InternetExplorer *This = WEBBROWSER_THIS(iface);
395 FIXME("(%p)->(%s)\n", This, debugstr_w(StatusText));
399 static HRESULT WINAPI InternetExplorer_get_ToolBar(IWebBrowser2 *iface, int *Value)
401 InternetExplorer *This = WEBBROWSER_THIS(iface);
402 FIXME("(%p)->(%p)\n", This, Value);
406 static HRESULT WINAPI InternetExplorer_put_ToolBar(IWebBrowser2 *iface, int Value)
408 InternetExplorer *This = WEBBROWSER_THIS(iface);
409 FIXME("(%p)->(%d)\n", This, Value);
413 static HRESULT WINAPI InternetExplorer_get_MenuBar(IWebBrowser2 *iface, VARIANT_BOOL *Value)
415 InternetExplorer *This = WEBBROWSER_THIS(iface);
416 FIXME("(%p)->(%p)\n", This, Value);
420 static HRESULT WINAPI InternetExplorer_put_MenuBar(IWebBrowser2 *iface, VARIANT_BOOL Value)
422 InternetExplorer *This = WEBBROWSER_THIS(iface);
423 FIXME("(%p)->(%x)\n", This, Value);
427 static HRESULT WINAPI InternetExplorer_get_FullScreen(IWebBrowser2 *iface, VARIANT_BOOL *pbFullScreen)
429 InternetExplorer *This = WEBBROWSER_THIS(iface);
430 FIXME("(%p)->(%p)\n", This, pbFullScreen);
434 static HRESULT WINAPI InternetExplorer_put_FullScreen(IWebBrowser2 *iface, VARIANT_BOOL bFullScreen)
436 InternetExplorer *This = WEBBROWSER_THIS(iface);
437 FIXME("(%p)->(%x)\n", This, bFullScreen);
441 static HRESULT WINAPI InternetExplorer_Navigate2(IWebBrowser2 *iface, VARIANT *URL, VARIANT *Flags,
442 VARIANT *TargetFrameName, VARIANT *PostData, VARIANT *Headers)
444 InternetExplorer *This = WEBBROWSER_THIS(iface);
445 PBYTE post_data = NULL;
446 ULONG post_data_len = 0;
447 LPWSTR headers = NULL;
450 TRACE("(%p)->(%p %p %p %p %p)\n", This, URL, Flags, TargetFrameName, PostData, Headers);
452 if((Flags && V_VT(Flags) != VT_EMPTY)
453 || (TargetFrameName && V_VT(TargetFrameName) != VT_EMPTY))
454 FIXME("Unsupported arguments\n");
459 if(V_VT(URL) != VT_BSTR)
462 if(PostData && V_VT(PostData) != VT_EMPTY) {
463 if(V_VT(PostData) != (VT_ARRAY | VT_UI1)
464 || V_ARRAY(PostData)->cDims != 1) {
465 WARN("Invalid PostData\n");
469 SafeArrayAccessData(V_ARRAY(PostData), (void**)&post_data);
470 post_data_len = V_ARRAY(PostData)->rgsabound[0].cElements;
473 if(Headers && V_VT(Headers) != VT_EMPTY) {
474 if(V_VT(Headers) != VT_BSTR)
477 headers = V_BSTR(Headers);
478 TRACE("Headers: %s\n", debugstr_w(headers));
481 hres = navigate_url(&This->doc_host, V_BSTR(URL), post_data, post_data_len, headers);
484 SafeArrayUnaccessData(V_ARRAY(PostData));
489 static HRESULT WINAPI InternetExplorer_QueryStatusWB(IWebBrowser2 *iface, OLECMDID cmdID, OLECMDF *pcmdf)
491 InternetExplorer *This = WEBBROWSER_THIS(iface);
492 FIXME("(%p)->(%d %p)\n", This, cmdID, pcmdf);
496 static HRESULT WINAPI InternetExplorer_ExecWB(IWebBrowser2 *iface, OLECMDID cmdID,
497 OLECMDEXECOPT cmdexecopt, VARIANT *pvaIn, VARIANT *pvaOut)
499 InternetExplorer *This = WEBBROWSER_THIS(iface);
500 FIXME("(%p)->(%d %d %p %p)\n", This, cmdID, cmdexecopt, pvaIn, pvaOut);
504 static HRESULT WINAPI InternetExplorer_ShowBrowserBar(IWebBrowser2 *iface, VARIANT *pvaClsid,
505 VARIANT *pvarShow, VARIANT *pvarSize)
507 InternetExplorer *This = WEBBROWSER_THIS(iface);
508 FIXME("(%p)->(%p %p %p)\n", This, pvaClsid, pvarShow, pvarSize);
512 static HRESULT WINAPI InternetExplorer_get_ReadyState(IWebBrowser2 *iface, READYSTATE *lpReadyState)
514 InternetExplorer *This = WEBBROWSER_THIS(iface);
515 FIXME("(%p)->(%p)\n", This, lpReadyState);
519 static HRESULT WINAPI InternetExplorer_get_Offline(IWebBrowser2 *iface, VARIANT_BOOL *pbOffline)
521 InternetExplorer *This = WEBBROWSER_THIS(iface);
522 FIXME("(%p)->(%p)\n", This, pbOffline);
526 static HRESULT WINAPI InternetExplorer_put_Offline(IWebBrowser2 *iface, VARIANT_BOOL bOffline)
528 InternetExplorer *This = WEBBROWSER_THIS(iface);
529 FIXME("(%p)->(%x)\n", This, bOffline);
533 static HRESULT WINAPI InternetExplorer_get_Silent(IWebBrowser2 *iface, VARIANT_BOOL *pbSilent)
535 InternetExplorer *This = WEBBROWSER_THIS(iface);
536 FIXME("(%p)->(%p)\n", This, pbSilent);
540 static HRESULT WINAPI InternetExplorer_put_Silent(IWebBrowser2 *iface, VARIANT_BOOL bSilent)
542 InternetExplorer *This = WEBBROWSER_THIS(iface);
543 FIXME("(%p)->(%x)\n", This, bSilent);
547 static HRESULT WINAPI InternetExplorer_get_RegisterAsBrowser(IWebBrowser2 *iface,
548 VARIANT_BOOL *pbRegister)
550 InternetExplorer *This = WEBBROWSER_THIS(iface);
551 FIXME("(%p)->(%p)\n", This, pbRegister);
555 static HRESULT WINAPI InternetExplorer_put_RegisterAsBrowser(IWebBrowser2 *iface,
556 VARIANT_BOOL bRegister)
558 InternetExplorer *This = WEBBROWSER_THIS(iface);
559 FIXME("(%p)->(%x)\n", This, bRegister);
563 static HRESULT WINAPI InternetExplorer_get_RegisterAsDropTarget(IWebBrowser2 *iface,
564 VARIANT_BOOL *pbRegister)
566 InternetExplorer *This = WEBBROWSER_THIS(iface);
567 FIXME("(%p)->(%p)\n", This, pbRegister);
571 static HRESULT WINAPI InternetExplorer_put_RegisterAsDropTarget(IWebBrowser2 *iface,
572 VARIANT_BOOL bRegister)
574 InternetExplorer *This = WEBBROWSER_THIS(iface);
575 FIXME("(%p)->(%x)\n", This, bRegister);
579 static HRESULT WINAPI InternetExplorer_get_TheaterMode(IWebBrowser2 *iface, VARIANT_BOOL *pbRegister)
581 InternetExplorer *This = WEBBROWSER_THIS(iface);
582 FIXME("(%p)->(%p)\n", This, pbRegister);
586 static HRESULT WINAPI InternetExplorer_put_TheaterMode(IWebBrowser2 *iface, VARIANT_BOOL bRegister)
588 InternetExplorer *This = WEBBROWSER_THIS(iface);
589 FIXME("(%p)->(%x)\n", This, bRegister);
593 static HRESULT WINAPI InternetExplorer_get_AddressBar(IWebBrowser2 *iface, VARIANT_BOOL *Value)
595 InternetExplorer *This = WEBBROWSER_THIS(iface);
596 FIXME("(%p)->(%p)\n", This, Value);
600 static HRESULT WINAPI InternetExplorer_put_AddressBar(IWebBrowser2 *iface, VARIANT_BOOL Value)
602 InternetExplorer *This = WEBBROWSER_THIS(iface);
603 FIXME("(%p)->(%x)\n", This, Value);
607 static HRESULT WINAPI InternetExplorer_get_Resizable(IWebBrowser2 *iface, VARIANT_BOOL *Value)
609 InternetExplorer *This = WEBBROWSER_THIS(iface);
610 FIXME("(%p)->(%p)\n", This, Value);
614 static HRESULT WINAPI InternetExplorer_put_Resizable(IWebBrowser2 *iface, VARIANT_BOOL Value)
616 InternetExplorer *This = WEBBROWSER_THIS(iface);
617 FIXME("(%p)->(%x)\n", This, Value);
621 #undef WEBBROWSER_THIS
623 static const IWebBrowser2Vtbl InternetExplorerVtbl =
625 InternetExplorer_QueryInterface,
626 InternetExplorer_AddRef,
627 InternetExplorer_Release,
628 InternetExplorer_GetTypeInfoCount,
629 InternetExplorer_GetTypeInfo,
630 InternetExplorer_GetIDsOfNames,
631 InternetExplorer_Invoke,
632 InternetExplorer_GoBack,
633 InternetExplorer_GoForward,
634 InternetExplorer_GoHome,
635 InternetExplorer_GoSearch,
636 InternetExplorer_Navigate,
637 InternetExplorer_Refresh,
638 InternetExplorer_Refresh2,
639 InternetExplorer_Stop,
640 InternetExplorer_get_Application,
641 InternetExplorer_get_Parent,
642 InternetExplorer_get_Container,
643 InternetExplorer_get_Document,
644 InternetExplorer_get_TopLevelContainer,
645 InternetExplorer_get_Type,
646 InternetExplorer_get_Left,
647 InternetExplorer_put_Left,
648 InternetExplorer_get_Top,
649 InternetExplorer_put_Top,
650 InternetExplorer_get_Width,
651 InternetExplorer_put_Width,
652 InternetExplorer_get_Height,
653 InternetExplorer_put_Height,
654 InternetExplorer_get_LocationName,
655 InternetExplorer_get_LocationURL,
656 InternetExplorer_get_Busy,
657 InternetExplorer_Quit,
658 InternetExplorer_ClientToWindow,
659 InternetExplorer_PutProperty,
660 InternetExplorer_GetProperty,
661 InternetExplorer_get_Name,
662 InternetExplorer_get_HWND,
663 InternetExplorer_get_FullName,
664 InternetExplorer_get_Path,
665 InternetExplorer_get_Visible,
666 InternetExplorer_put_Visible,
667 InternetExplorer_get_StatusBar,
668 InternetExplorer_put_StatusBar,
669 InternetExplorer_get_StatusText,
670 InternetExplorer_put_StatusText,
671 InternetExplorer_get_ToolBar,
672 InternetExplorer_put_ToolBar,
673 InternetExplorer_get_MenuBar,
674 InternetExplorer_put_MenuBar,
675 InternetExplorer_get_FullScreen,
676 InternetExplorer_put_FullScreen,
677 InternetExplorer_Navigate2,
678 InternetExplorer_QueryStatusWB,
679 InternetExplorer_ExecWB,
680 InternetExplorer_ShowBrowserBar,
681 InternetExplorer_get_ReadyState,
682 InternetExplorer_get_Offline,
683 InternetExplorer_put_Offline,
684 InternetExplorer_get_Silent,
685 InternetExplorer_put_Silent,
686 InternetExplorer_get_RegisterAsBrowser,
687 InternetExplorer_put_RegisterAsBrowser,
688 InternetExplorer_get_RegisterAsDropTarget,
689 InternetExplorer_put_RegisterAsDropTarget,
690 InternetExplorer_get_TheaterMode,
691 InternetExplorer_put_TheaterMode,
692 InternetExplorer_get_AddressBar,
693 InternetExplorer_put_AddressBar,
694 InternetExplorer_get_Resizable,
695 InternetExplorer_put_Resizable
698 void InternetExplorer_WebBrowser_Init(InternetExplorer *This)
700 This->lpWebBrowser2Vtbl = &InternetExplorerVtbl;