Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
538a870b
Commit
538a870b
authored
Nov 13, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 15, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Get rid of DocHost-related *_THIS macros.
parent
ca353c9b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
17 deletions
+7
-17
client.c
dlls/shdocvw/client.c
+0
-0
dochost.c
dlls/shdocvw/dochost.c
+0
-0
shdocvw.h
dlls/shdocvw/shdocvw.h
+7
-17
No files found.
dlls/shdocvw/client.c
View file @
538a870b
This diff is collapsed.
Click to expand it.
dlls/shdocvw/dochost.c
View file @
538a870b
This diff is collapsed.
Click to expand it.
dlls/shdocvw/shdocvw.h
View file @
538a870b
...
...
@@ -94,13 +94,13 @@ typedef struct _IDocHostContainerVtbl
struct
DocHost
{
IOleClientSite
IOleClientSite_iface
;
const
IOleInPlaceSiteVtbl
*
lpOleInPlaceSiteVtbl
;
const
IDocHostUIHandler2Vtbl
*
lpDocHostUIHandlerVtbl
;
const
IOleDocumentSiteVtbl
*
lpOleDocumentSiteVtbl
;
const
IOleCommandTargetVtbl
*
lpOleCommandTargetVtbl
;
const
IDispatchVtbl
*
lpDispatchVtbl
;
const
IPropertyNotifySinkVtbl
*
lpIPropertyNotifySinkVtbl
;
const
IServiceProviderVtbl
*
lpServiceProviderVtbl
;
IOleInPlaceSite
IOleInPlaceSite_iface
;
IDocHostUIHandler2
IDocHostUIHandler2_iface
;
IOleDocumentSite
IOleDocumentSite_iface
;
IOleCommandTarget
IOleCommandTarget_iface
;
IDispatch
IDispatch_iface
;
IPropertyNotifySink
IPropertyNotifySink_iface
;
IServiceProvider
IServiceProvider_iface
;
/* Interfaces of InPlaceFrame object */
const
IOleInPlaceFrameVtbl
*
lpOleInPlaceFrameVtbl
;
...
...
@@ -195,16 +195,6 @@ struct InternetExplorer {
};
#define CONPTCONT(x) ((IConnectionPointContainer*) &(x)->lpConnectionPointContainerVtbl)
#define OLECMD(x) ((IOleCommandTarget*) &(x)->lpOleCommandTargetVtbl)
#define INPLACESITE(x) ((IOleInPlaceSite*) &(x)->lpOleInPlaceSiteVtbl)
#define DOCHOSTUI(x) ((IDocHostUIHandler*) &(x)->lpDocHostUIHandlerVtbl)
#define DOCHOSTUI2(x) ((IDocHostUIHandler2*) &(x)->lpDocHostUIHandlerVtbl)
#define DOCSITE(x) ((IOleDocumentSite*) &(x)->lpOleDocumentSiteVtbl)
#define CLDISP(x) ((IDispatch*) &(x)->lpDispatchVtbl)
#define PROPNOTIF(x) ((IPropertyNotifySink*) &(x)->lpIPropertyNotifySinkVtbl)
#define SERVPROV(x) ((IServiceProvider*) &(x)->lpServiceProviderVtbl)
#define INPLACEFRAME(x) ((IOleInPlaceFrame*) &(x)->lpOleInPlaceFrameVtbl)
#define HLINKFRAME(x) ((IHlinkFrame*) &(x)->lpIHlinkFrameVtbl)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment