mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
Updated the interfaces to use the latest ICOM macros.
This commit is contained in:
parent
5df640ded4
commit
88fd786b22
2 changed files with 9 additions and 9 deletions
|
@ -48,9 +48,9 @@ ICOM_DEFINE(IDropSource,IUnknown)
|
|||
|
||||
#ifdef ICOM_CINTERFACE
|
||||
/*** IUnknown methods ***/
|
||||
#define IDropSource_QueryInterface(p,a,b) ICOM_ICALL2(IUnknown,QueryInterface,p,a,b)
|
||||
#define IDropSource_AddRef(p) ICOM_ICALL (IUnknown,AddRef,p)
|
||||
#define IDropSource_Release(p) ICOM_ICALL (IUnknown,Release,p)
|
||||
#define IDropSource_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
||||
#define IDropSource_AddRef(p) ICOM_CALL (AddRef,p)
|
||||
#define IDropSource_Release(p) ICOM_CALL (Release,p)
|
||||
/*** IDropTarget methods ***/
|
||||
#define IDropSource_QueryContinueDrag(p,a,b) ICOM_CALL2(QueryContinueDrag,p,a,b)
|
||||
#define IDropSource_GiveFeedback(p,a) ICOM_CALL1(GiveFeedback,p,a)
|
||||
|
@ -72,9 +72,9 @@ ICOM_DEFINE(IDropTarget,IUnknown)
|
|||
|
||||
#ifdef ICOM_CINTERFACE
|
||||
/*** IUnknown methods ***/
|
||||
#define IDropTarget_QueryInterface(p,a,b) ICOM_ICALL2(IUnknown,QueryInterface,p,a,b)
|
||||
#define IDropTarget_AddRef(p) ICOM_ICALL (IUnknown,AddRef,p)
|
||||
#define IDropTarget_Release(p) ICOM_ICALL (IUnknown,Release,p)
|
||||
#define IDropTarget_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
||||
#define IDropTarget_AddRef(p) ICOM_CALL (AddRef,p)
|
||||
#define IDropTarget_Release(p) ICOM_CALL (Release,p)
|
||||
/*** IDropTarget methods ***/
|
||||
#define IDropTarget_DragEnter(p,a,b,c,d) ICOM_CALL4(DragEnter,p,a,b,c,d)
|
||||
#define IDropTarget_DragOver(p,a,b,c) ICOM_CALL3(DragOver,p,a,b,c)
|
||||
|
|
|
@ -149,9 +149,9 @@ ICOM_DEFINE(IOleWindow,IUnknown)
|
|||
|
||||
#ifdef ICOM_CINTERFACE
|
||||
/*** IUnknown methods ***/
|
||||
#define IOleWindow_QueryInterface(p,a,b) ICOM_ICALL2(IUnknown,QueryInterface,p,a,b)
|
||||
#define IOleWindow_AddRef(p) ICOM_ICALL (IUnknown,AddRef,p)
|
||||
#define IOleWindow_Release(p) ICOM_ICALL (IUnknown,Release,p)
|
||||
#define IOleWindow_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
||||
#define IOleWindow_AddRef(p) ICOM_CALL (AddRef,p)
|
||||
#define IOleWindow_Release(p) ICOM_CALL (Release,p)
|
||||
/*** IOleWindow methods ***/
|
||||
#define IOleWindow_GetWindow(p,a) ICOM_CALL1(GetWindow,p,a)
|
||||
#define IOleWindow_ContextSensitiveHelp(p,a) ICOM_CALL1(ContextSensitiveHelp,p,a)
|
||||
|
|
Loading…
Reference in a new issue