include: Add IDropSourceNotify.

Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Huw Davies 2016-01-27 13:31:47 +00:00 committed by Alexandre Julliard
parent 25aa26e815
commit 8f6fde50e8
1 changed files with 15 additions and 0 deletions

View File

@ -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 );
}