Module: wine Branch: master Commit: 8f6fde50e809d2b8d905e8bd12d481e4702e22d8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8f6fde50e809d2b8d905e8bd12...
Author: Huw Davies huw@codeweavers.com Date: Wed Jan 27 13:31:47 2016 +0000
include: Add IDropSourceNotify.
Signed-off-by: Huw Davies huw@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/oleidl.idl | 15 +++++++++++++++ 1 file changed, 15 insertions(+)
diff --git a/include/oleidl.idl b/include/oleidl.idl index 74962ff..9a9d466 100644 --- a/include/oleidl.idl +++ b/include/oleidl.idl @@ -956,3 +956,18 @@ interface IDropTarget : IUnknown [in] POINTL pt, [in, out] DWORD *pdwEffect); } + +/***************************************************************************** + * IDropSourceNotify interface + */ +[ + object, + uuid(0000012b-0000-0000-c000-000000000046), + pointer_default(unique), + local +] +interface IDropSourceNotify : IUnknown +{ + HRESULT DragTargetEnter( [in] HWND hwnd ); + HRESULT DragTargetLeave( void ); +}