Ignore:
Timestamp:
Aug 23, 1999, 12:52:05 AM (26 years ago)
Author:
sandervl
Message:

Updated Wine headers

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 $ */
    21/*
    32 * Defines the COM interfaces and APIs related to OLE Drag and Drop.
     
    1110#include "wine/obj_base.h"
    1211#include "wine/obj_dataobject.h"
     12
     13#ifdef __cplusplus
     14extern "C" {
     15#endif /* defined(__cplusplus) */
    1316
    1417/*****************************************************************************
     
    4447    ICOM_METHOD1(HRESULT, GiveFeedback, DWORD, dwEffect)
    4548#define IDropSource_IMETHODS \
    46   ICOM_INHERITS(IDropSource,IUnknown)
     49        IUnknown_IMETHODS \
     50        IDropSource_METHODS
    4751ICOM_DEFINE(IDropSource,IUnknown)
    4852#undef ICOM_INTERFACE
     
    5357#define IDropSource_AddRef(p)             ICOM_CALL (AddRef,p)
    5458#define IDropSource_Release(p)            ICOM_CALL (Release,p)
    55 /*** IDropTarget methods ***/
     59/*** IDropSource methods ***/
    5660#define IDropSource_QueryContinueDrag(p,a,b) ICOM_CALL2(QueryContinueDrag,p,a,b)
    5761#define IDropSource_GiveFeedback(p,a)        ICOM_CALL1(GiveFeedback,p,a)
     
    6872    ICOM_METHOD4(HRESULT, Drop, IDataObject*, pDataObject, DWORD, grfKeyState, POINTL, pt, DWORD*, pdwEffect)
    6973#define IDropTarget_IMETHODS \
    70   ICOM_INHERITS(IDropTarget,IUnknown)
     74        IUnknown_IMETHODS \
     75        IDropTarget_METHODS
    7176ICOM_DEFINE(IDropTarget,IUnknown)
    7277#undef ICOM_INTERFACE
     
    8489#endif
    8590
     91#ifdef __cplusplus
     92} /* extern "C" */
     93#endif /* defined(__cplusplus) */
     94
    8695#endif /*  __WINE_WINE_OBJ_DRAGDROP_H */
    8796
Note: See TracChangeset for help on using the changeset viewer.