ImageList_SetDragCursorImage(3w)
NAME
ImageList_SetDragCursorImage (COMCTL32.@)
SYNOPSIS
BOOL ImageList_SetDragCursorImage ( HIMAGELIST himlDrag, INT iDrag, INT dxHotspot, INT dyHotspot )
DESCRIPTION
Combines the specified image with the current drag image.
PARAMS
himlDrag [In] handle to drag image list.
iDrag [In] drag image index.
dxHotspot [In] X position of the hot spot.
dyHotspot [In] Y position of the hot spot.
RETURNS
Success: TRUE
Failure: FALSE.
NOTES
- The names dxHotspot, dyHotspot are misleading because they have nothing to do with a hotspot but are only the offset of the origin of the
new image relative to the origin of the old image.
- When this function is called and the drag image is visible, a short
flickering occurs but this matches the Win9x behavior. It is possible
to fix the flickering using code like in ImageList_DragMove.
IMPLEMENTATION
Defined in "commctrl.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/comctl32/imagelist.c".
- Debug channel "imagelist".