Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
88fd786b
Commit
88fd786b
authored
Mar 15, 1999
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 15, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated the interfaces to use the latest ICOM macros.
parent
5df640de
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
obj_dragdrop.h
include/wine/obj_dragdrop.h
+6
-6
obj_inplace.h
include/wine/obj_inplace.h
+3
-3
No files found.
include/wine/obj_dragdrop.h
View file @
88fd786b
...
...
@@ -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)
...
...
include/wine/obj_inplace.h
View file @
88fd786b
...
...
@@ -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)
...
...
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