Changeset 640 for trunk/include/win/wine/obj_dragdrop.h
- Timestamp:
- Aug 23, 1999, 12:52:05 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/wine/obj_dragdrop.h
r94 r640 1 /* $Id: obj_dragdrop.h,v 1.3 1999-06-10 16:21:54 achimha Exp $ */2 1 /* 3 2 * Defines the COM interfaces and APIs related to OLE Drag and Drop. … … 11 10 #include "wine/obj_base.h" 12 11 #include "wine/obj_dataobject.h" 12 13 #ifdef __cplusplus 14 extern "C" { 15 #endif /* defined(__cplusplus) */ 13 16 14 17 /***************************************************************************** … … 44 47 ICOM_METHOD1(HRESULT, GiveFeedback, DWORD, dwEffect) 45 48 #define IDropSource_IMETHODS \ 46 ICOM_INHERITS(IDropSource,IUnknown) 49 IUnknown_IMETHODS \ 50 IDropSource_METHODS 47 51 ICOM_DEFINE(IDropSource,IUnknown) 48 52 #undef ICOM_INTERFACE … … 53 57 #define IDropSource_AddRef(p) ICOM_CALL (AddRef,p) 54 58 #define IDropSource_Release(p) ICOM_CALL (Release,p) 55 /*** IDrop Targetmethods ***/59 /*** IDropSource methods ***/ 56 60 #define IDropSource_QueryContinueDrag(p,a,b) ICOM_CALL2(QueryContinueDrag,p,a,b) 57 61 #define IDropSource_GiveFeedback(p,a) ICOM_CALL1(GiveFeedback,p,a) … … 68 72 ICOM_METHOD4(HRESULT, Drop, IDataObject*, pDataObject, DWORD, grfKeyState, POINTL, pt, DWORD*, pdwEffect) 69 73 #define IDropTarget_IMETHODS \ 70 ICOM_INHERITS(IDropTarget,IUnknown) 74 IUnknown_IMETHODS \ 75 IDropTarget_METHODS 71 76 ICOM_DEFINE(IDropTarget,IUnknown) 72 77 #undef ICOM_INTERFACE … … 84 89 #endif 85 90 91 #ifdef __cplusplus 92 } /* extern "C" */ 93 #endif /* defined(__cplusplus) */ 94 86 95 #endif /* __WINE_WINE_OBJ_DRAGDROP_H */ 87 96
Note:
See TracChangeset
for help on using the changeset viewer.