Changeset 6712 for trunk/src/shdocvw
- Timestamp:
- Sep 15, 2001, 11:47:44 AM (24 years ago)
- Location:
- trunk/src/shdocvw
- Files:
-
- 8 edited
-
classinfo.c (modified) (3 diffs)
-
events.c (modified) (3 diffs)
-
factory.c (modified) (2 diffs)
-
misc.c (modified) (2 diffs)
-
oleobject.c (modified) (4 diffs)
-
persist.c (modified) (3 diffs)
-
shdocvw_main.c (modified) (3 diffs)
-
webbrowser.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shdocvw/classinfo.c
r6649 r6712 1 /* $Id: classinfo.c,v 1.2 2001-09-05 13:39:11 bird Exp $ */2 1 /* 3 2 * Implementation of IProvideClassInfo interfaces for IE Web Browser control … … 57 56 */ 58 57 59 static ICOM_VTABLE(IProvideClassInfo) WBPCI_Vtbl = 58 static ICOM_VTABLE(IProvideClassInfo) WBPCI_Vtbl = 60 59 { 61 60 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE … … 142 141 */ 143 142 144 static ICOM_VTABLE(IProvideClassInfo2) WBPCI2_Vtbl = 143 static ICOM_VTABLE(IProvideClassInfo2) WBPCI2_Vtbl = 145 144 { 146 145 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE -
trunk/src/shdocvw/events.c
r6649 r6712 1 /* $Id: events.c,v 1.2 2001-09-05 13:39:11 bird Exp $ */2 1 /* 3 2 * Implementation of event-related interfaces for IE Web Browser control: … … 87 86 */ 88 87 89 static ICOM_VTABLE(IConnectionPointContainer) WBCPC_Vtbl = 88 static ICOM_VTABLE(IConnectionPointContainer) WBCPC_Vtbl = 90 89 { 91 90 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE … … 182 181 */ 183 182 184 static ICOM_VTABLE(IConnectionPoint) WBCP_Vtbl = 183 static ICOM_VTABLE(IConnectionPoint) WBCP_Vtbl = 185 184 { 186 185 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE -
trunk/src/shdocvw/factory.c
r6649 r6712 1 /* $Id: factory.c,v 1.2 2001-09-05 13:39:11 bird Exp $ */2 1 /* 3 2 * Implementation of class factory for IE Web Browser … … 96 95 } 97 96 98 static ICOM_VTABLE(IClassFactory) WBCF_Vtbl = 97 static ICOM_VTABLE(IClassFactory) WBCF_Vtbl = 99 98 { 100 99 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE -
trunk/src/shdocvw/misc.c
r6649 r6712 1 /* $Id: misc.c,v 1.2 2001-09-05 13:39:12 bird Exp $ */2 1 /* 3 2 * Implementation of miscellaneous interfaces for IE Web Browser control: … … 68 67 */ 69 68 70 static ICOM_VTABLE(IQuickActivate) WBQA_Vtbl = 69 static ICOM_VTABLE(IQuickActivate) WBQA_Vtbl = 71 70 { 72 71 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE -
trunk/src/shdocvw/oleobject.c
r6649 r6712 1 /* $Id: oleobject.c,v 1.2 2001-09-05 13:39:12 bird Exp $ */2 1 /* 3 2 * Implementation of IOleObject interfaces for IE Web Browser … … 397 396 */ 398 397 399 static ICOM_VTABLE(IOleObject) WBOOBJ_Vtbl = 398 static ICOM_VTABLE(IOleObject) WBOOBJ_Vtbl = 400 399 { 401 400 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE … … 515 514 */ 516 515 517 static ICOM_VTABLE(IOleInPlaceObject) WBOIPO_Vtbl = 516 static ICOM_VTABLE(IOleInPlaceObject) WBOIPO_Vtbl = 518 517 { 519 518 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE … … 590 589 */ 591 590 592 static ICOM_VTABLE(IOleControl) WBOC_Vtbl = 591 static ICOM_VTABLE(IOleControl) WBOC_Vtbl = 593 592 { 594 593 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE -
trunk/src/shdocvw/persist.c
r6649 r6712 1 /* $Id: persist.c,v 1.2 2001-09-05 13:39:12 bird Exp $ */2 1 /* 3 2 * Implementation of IPersist interfaces for IE Web Browser control … … 82 81 */ 83 82 84 static ICOM_VTABLE(IPersistStorage) WBPS_Vtbl = 83 static ICOM_VTABLE(IPersistStorage) WBPS_Vtbl = 85 84 { 86 85 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE … … 171 170 */ 172 171 173 static ICOM_VTABLE(IPersistStreamInit) WBPSI_Vtbl = 172 static ICOM_VTABLE(IPersistStreamInit) WBPSI_Vtbl = 174 173 { 175 174 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE -
trunk/src/shdocvw/shdocvw_main.c
r6649 r6712 1 /* $Id: shdocvw_main.c,v 1.2 2001-09-05 13:39:12 bird Exp $ */2 1 /* 3 2 * SHDOCVW - Internet Explorer Web Control … … 67 66 68 67 /*********************************************************************** 69 * DllRegisterServer (SHDOCVW.124)68 * DllRegisterServer (SHDOCVW.124) 70 69 */ 71 70 HRESULT WINAPI SHDOCVW_DllRegisterServer() … … 76 75 77 76 /*********************************************************************** 78 * DllUnregisterServer (SHDOCVW.127)77 * DllUnregisterServer (SHDOCVW.127) 79 78 */ 80 79 HRESULT WINAPI SHDOCVW_DllUnregisterServer() -
trunk/src/shdocvw/webbrowser.c
r6649 r6712 1 /* $Id: webbrowser.c,v 1.2 2001-09-05 13:39:12 bird Exp $ */2 1 /* 3 2 * Implementation of IWebBrowser interface for IE Web Browser control … … 229 228 */ 230 229 231 static ICOM_VTABLE(IWebBrowser) WB_Vtbl = 230 static ICOM_VTABLE(IWebBrowser) WB_Vtbl = 232 231 { 233 232 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
Note:
See TracChangeset
for help on using the changeset viewer.
